summaryrefslogtreecommitdiff
path: root/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2011-04-29 14:14:06 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2011-04-29 14:14:06 +0000
commita432997745f668e85e45826106430f69238b1d1e (patch)
tree2b47cfbfe43e144dc1c21c8185a2f0f349cd8778 /lib/CodeGen/AsmPrinter/DwarfCFIException.cpp
parentce3a022b8c07339b31aadb56288a8e02c76b40e3 (diff)
downloadllvm-a432997745f668e85e45826106430f69238b1d1e.tar.gz
llvm-a432997745f668e85e45826106430f69238b1d1e.tar.bz2
llvm-a432997745f668e85e45826106430f69238b1d1e.tar.xz
Factor some code to needsCFIMoves. Avoid printing moves when we don't have to.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130501 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DwarfCFIException.cpp')
-rw-r--r--lib/CodeGen/AsmPrinter/DwarfCFIException.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp b/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp
index 1dcfddf1a1..e85d5298a0 100644
--- a/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp
+++ b/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp
@@ -78,8 +78,7 @@ void DwarfCFIException::BeginFunction(const MachineFunction *MF) {
shouldEmitTable = !MMI->getLandingPads().empty();
// See if we need frame move info.
- shouldEmitMoves = MMI->hasDebugInfo() ||
- !Asm->MF->getFunction()->doesNotThrow() || UnwindTablesMandatory;
+ shouldEmitMoves = Asm->needsCFIMoves();
if (shouldEmitMoves || shouldEmitTable)
// Assumes in correct section after the entry point.