aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/X86/X86Subtarget.h
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2011-06-23 17:54:54 +0000
committerEvan Cheng <evan.cheng@apple.com>2011-06-23 17:54:54 +0000
commitef41ff618f2537539b538e6c7bf471c753391f92 (patch)
tree1e42e82e7ee4e6925a75abab0ea4b17141db80b8 /lib/Target/X86/X86Subtarget.h
parent75d33878ab75618f169939f9b6941a5c4794336f (diff)
downloadexternal_llvm-ef41ff618f2537539b538e6c7bf471c753391f92.tar.gz
external_llvm-ef41ff618f2537539b538e6c7bf471c753391f92.tar.bz2
external_llvm-ef41ff618f2537539b538e6c7bf471c753391f92.zip
Remove TargetOptions.h dependency from X86Subtarget.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133726 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86Subtarget.h')
-rw-r--r--lib/Target/X86/X86Subtarget.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/Target/X86/X86Subtarget.h b/lib/Target/X86/X86Subtarget.h
index 286a7982a6..49bf74b764 100644
--- a/lib/Target/X86/X86Subtarget.h
+++ b/lib/Target/X86/X86Subtarget.h
@@ -117,7 +117,8 @@ public:
/// This constructor initializes the data members to match that
/// of the specified triple.
///
- X86Subtarget(const std::string &TT, const std::string &FS, bool is64Bit);
+ X86Subtarget(const std::string &TT, const std::string &FS, bool is64Bit,
+ unsigned StackAlignOverride);
/// getStackAlignment - Returns the minimum alignment known to hold of the
/// stack frame on entry to the function and which must be maintained by every
@@ -248,9 +249,6 @@ public:
/// indicating the number of scheduling cycles of backscheduling that
/// should be attempted.
unsigned getSpecialAddressLatency() const;
-
- /// IsCalleePop - Test whether a function should pop its own arguments.
- bool IsCalleePop(bool isVarArg, CallingConv::ID CallConv) const;
};
} // End llvm namespace