From: Bill Wendling Date: Fri, 2 Sep 2011 18:15:04 +0000 (+0000) Subject: Revert r138826 until PR10834 can be fixed. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d199aa012bb7d05d55daa3b2d3fbeb421728706e;p=oota-llvm.git Revert r138826 until PR10834 can be fixed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139018 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/X86FrameLowering.cpp b/lib/Target/X86/X86FrameLowering.cpp index 6bc349ffc10..19486f871f0 100644 --- a/lib/Target/X86/X86FrameLowering.cpp +++ b/lib/Target/X86/X86FrameLowering.cpp @@ -35,6 +35,13 @@ using namespace llvm; // FIXME: completely move here. extern cl::opt ForceStackAlign; +// FIXME: Remove once linker support is available. The feature exists only on +// Darwin at the moment. +static cl::opt +GenerateCompactUnwind("gen-compact-unwind", + cl::desc("Generate compact unwind encoding"), + cl::Hidden); + bool X86FrameLowering::hasReservedCallFrame(const MachineFunction &MF) const { return !MF.getFrameInfo()->hasVarSizedObjects(); } @@ -901,7 +908,7 @@ void X86FrameLowering::emitPrologue(MachineFunction &MF) const { } // Darwin 10.7 and greater has support for compact unwind encoding. - if (STI.getTargetTriple().isMacOSX() && + if (GenerateCompactUnwind && STI.getTargetTriple().isMacOSX() && !STI.getTargetTriple().isMacOSXVersionLT(10, 7)) MMI.setCompactUnwindEncoding(getCompactUnwindEncoding(MF)); }