aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/MachineFunction.cpp
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2009-05-13 23:50:53 +0000
committerJim Grosbach <grosbach@apple.com>2009-05-13 23:50:53 +0000
commita0929a18ae6341fa1fcc786965cf3d5190ef4d2a (patch)
tree7ab73c973a08007a6114372a07030ffdab2512ac /lib/CodeGen/MachineFunction.cpp
parent58c9e3ca46ee2d0decc713dfac032b0dda4f7e6b (diff)
downloadexternal_llvm-a0929a18ae6341fa1fcc786965cf3d5190ef4d2a.tar.gz
external_llvm-a0929a18ae6341fa1fcc786965cf3d5190ef4d2a.tar.bz2
external_llvm-a0929a18ae6341fa1fcc786965cf3d5190ef4d2a.zip
Removing the HasBuiltinSetjmp flag and associated bits. Flagging the presence
of exception handling builtin sjlj targets in functions turns out not to be necessary. Marking the intrinsic implementation in the .td file as defining all registers is sufficient to get the context saved properly by the containing function. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@71743 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineFunction.cpp')
-rw-r--r--lib/CodeGen/MachineFunction.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/CodeGen/MachineFunction.cpp b/lib/CodeGen/MachineFunction.cpp
index cb19bec089..5135308e98 100644
--- a/lib/CodeGen/MachineFunction.cpp
+++ b/lib/CodeGen/MachineFunction.cpp
@@ -121,7 +121,6 @@ MachineFunction::MachineFunction(const Function *F,
MachineRegisterInfo(*TM.getRegisterInfo());
else
RegInfo = 0;
- HasBuiltinSetjmp = false;
MFInfo = 0;
FrameInfo = new (Allocator.Allocate<MachineFrameInfo>())
MachineFrameInfo(*TM.getFrameInfo());