diff options
author | Duncan Sands <baldrick@free.fr> | 2008-07-04 09:55:48 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2008-07-04 09:55:48 +0000 |
commit | ececf99c07febbcaeec73822519f0d36d3ee50c4 (patch) | |
tree | 6b593e3f52aa0061a766c3770254122418e0002d /lib/CodeGen | |
parent | c04f46567c3ebf64257d8f03e29d80a69606a6bc (diff) |
Linux also does not require exception handling
moves in order to get correct debug info. Since
I can't imagine how any target could possibly
be any different, I've just stripped out the
option: now all the world's like Darwin!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53134 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/DwarfWriter.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/CodeGen/DwarfWriter.cpp b/lib/CodeGen/DwarfWriter.cpp index 2d0a114202..cf46413e70 100644 --- a/lib/CodeGen/DwarfWriter.cpp +++ b/lib/CodeGen/DwarfWriter.cpp @@ -3512,9 +3512,7 @@ public: shouldEmitTable = true; // See if we need frame move info. - if ((MMI->hasDebugInfo() && TAI->doesDebugInfoRequireFrameMoveInfo()) || - !MF->getFunction()->doesNotThrow() || - UnwindTablesMandatory) + if (!MF->getFunction()->doesNotThrow() || UnwindTablesMandatory) shouldEmitMoves = true; if (shouldEmitMoves || shouldEmitTable) |