summaryrefslogtreecommitdiffstats
path: root/llvm/lib/MC/MCDwarf.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2011-11-11 00:28:42 +0000
committerBill Wendling <isanbard@gmail.com>2011-11-11 00:28:42 +0000
commitf311655e3f12cc05eecae31da47ca813819f4af1 (patch)
tree76be697d9599a212a29abd3ad5aa6c178c085bbb /llvm/lib/MC/MCDwarf.cpp
parentf258ad81c02daba09d99f8994b38b0e3f91ac259 (diff)
downloadbcm5719-llvm-f311655e3f12cc05eecae31da47ca813819f4af1.tar.gz
bcm5719-llvm-f311655e3f12cc05eecae31da47ca813819f4af1.zip
Disable compact unwind generation until I can solve the codegen problems.
llvm-svn: 144346
Diffstat (limited to 'llvm/lib/MC/MCDwarf.cpp')
-rw-r--r--llvm/lib/MC/MCDwarf.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCDwarf.cpp b/llvm/lib/MC/MCDwarf.cpp
index c274b9df63a..0225afa80e4 100644
--- a/llvm/lib/MC/MCDwarf.cpp
+++ b/llvm/lib/MC/MCDwarf.cpp
@@ -1011,7 +1011,8 @@ void MCDwarfFrameEmitter::Emit(MCStreamer &Streamer,
// Emit the compact unwind info if available.
// FIXME: This emits both the compact unwind and the old CIE/FDE
// information. Only one of those is needed.
- if (IsEH && MOFI->getCompactUnwindSection())
+ // FIXME: Disable. This is causing failures in the test suite.
+ if (false && IsEH && MOFI->getCompactUnwindSection())
for (unsigned i = 0, n = Streamer.getNumFrameInfos(); i < n; ++i) {
const MCDwarfFrameInfo &Frame = Streamer.getFrameInfo(i);
if (Frame.CompactUnwindEncoding)
OpenPOWER on IntegriCloud