aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/PowerPC/PPCRegisterInfo.cpp
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2008-04-14 17:54:17 +0000
committerDale Johannesen <dalej@apple.com>2008-04-14 17:54:17 +0000
commit3541af73b6b8a083cf2d7784438d60e8bcce3883 (patch)
tree32d74280a098233806b9be1892de720a7d2275f5 /lib/Target/PowerPC/PPCRegisterInfo.cpp
parentec1f1a8bd2db222548ec74458c6053124b3fc367 (diff)
Reverse sense of unwind-tables option. This means
stack tracebacks on Darwin x86-64 won't work by default; nevertheless, everybody but me thinks this is a good idea. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49663 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCRegisterInfo.cpp')
-rw-r--r--lib/Target/PowerPC/PPCRegisterInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/PPCRegisterInfo.cpp b/lib/Target/PowerPC/PPCRegisterInfo.cpp
index 8b4fb6a356..984021068b 100644
--- a/lib/Target/PowerPC/PPCRegisterInfo.cpp
+++ b/lib/Target/PowerPC/PPCRegisterInfo.cpp
@@ -949,7 +949,7 @@ PPCRegisterInfo::emitPrologue(MachineFunction &MF) const {
MachineModuleInfo *MMI = MFI->getMachineModuleInfo();
bool needsFrameMoves = (MMI && MMI->hasDebugInfo()) ||
!MF.getFunction()->doesNotThrow() ||
- !UnwindTablesOptional;
+ UnwindTablesMandatory;
// Prepare for frame info.
unsigned FrameLabelId = 0;