summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2010-05-26 01:59:55 +0000
committerEric Christopher <echristo@apple.com>2010-05-26 01:59:55 +0000
commit174e597d466547d34cf8fcd2a95976e0cf5ebbac (patch)
tree44a098a405e1b13f0012f074584db93d6ec2afa8 /include
parent54e13eceff09ee79dc6408be990aabdee1a561dc (diff)
downloadllvm-174e597d466547d34cf8fcd2a95976e0cf5ebbac.tar.gz
llvm-174e597d466547d34cf8fcd2a95976e0cf5ebbac.tar.bz2
llvm-174e597d466547d34cf8fcd2a95976e0cf5ebbac.tar.xz
Temporarily revert r104655 as it's breaking the bots.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104664 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/MachineFunction.h15
1 files changed, 1 insertions, 14 deletions
diff --git a/include/llvm/CodeGen/MachineFunction.h b/include/llvm/CodeGen/MachineFunction.h
index ec25bc1319..595872ad2d 100644
--- a/include/llvm/CodeGen/MachineFunction.h
+++ b/include/llvm/CodeGen/MachineFunction.h
@@ -114,13 +114,9 @@ class MachineFunction {
///
unsigned FunctionNumber;
- /// Alignment - The alignment of the function.
+ /// The alignment of the function.
unsigned Alignment;
- /// HasReturnsTwiceCall - Returns true if there's a call with a
- /// "returns_twice" attribute, like setjmp.
- bool HasReturnsTwiceCall;
-
MachineFunction(const MachineFunction &); // DO NOT IMPLEMENT
void operator=(const MachineFunction&); // DO NOT IMPLEMENT
public:
@@ -185,15 +181,6 @@ public:
void EnsureAlignment(unsigned A) {
if (Alignment < A) Alignment = A;
}
-
- /// hasReturnsTwiceCall - Returns true if there's a call with a
- /// "returns_twice" attribute, like setjmp.
- bool hasReturnsTwiceCall() const {
- return HasReturnsTwiceCall;
- }
- void setReturnsTwiceCall(bool B) {
- HasReturnsTwiceCall = B;
- }
/// getInfo - Keep track of various per-function pieces of information for
/// backends that would like to do so.