forked from OSchip/llvm-project
Re-re-enable compact unwind after fixing a failure in SingleSource/Benchmarks/Shootout-C++/except.cpp and friends. It was encoding the stored registers in the wrong order.
llvm-svn: 146617
This commit is contained in:
parent
4d873b725e
commit
db0f63e345
|
@ -1348,8 +1348,7 @@ void MCDwarfFrameEmitter::Emit(MCStreamer &Streamer,
|
||||||
ArrayRef<MCDwarfFrameInfo> FrameArray = Streamer.getFrameInfos();
|
ArrayRef<MCDwarfFrameInfo> FrameArray = Streamer.getFrameInfos();
|
||||||
|
|
||||||
// Emit the compact unwind info if available.
|
// Emit the compact unwind info if available.
|
||||||
// FIXME: Re-enable.
|
if (IsEH && MOFI->getCompactUnwindSection())
|
||||||
if (false && IsEH && MOFI->getCompactUnwindSection())
|
|
||||||
for (unsigned i = 0, n = Streamer.getNumFrameInfos(); i < n; ++i) {
|
for (unsigned i = 0, n = Streamer.getNumFrameInfos(); i < n; ++i) {
|
||||||
const MCDwarfFrameInfo &Frame = Streamer.getFrameInfo(i);
|
const MCDwarfFrameInfo &Frame = Streamer.getFrameInfo(i);
|
||||||
if (Frame.CompactUnwindEncoding)
|
if (Frame.CompactUnwindEncoding)
|
||||||
|
|
Loading…
Reference in New Issue