Fix a problem introduced by a last-minute change (logic negation).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31302 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/DwarfWriter.cpp b/lib/CodeGen/DwarfWriter.cpp
index 40de586..983d8f5 100644
--- a/lib/CodeGen/DwarfWriter.cpp
+++ b/lib/CodeGen/DwarfWriter.cpp
@@ -2627,7 +2627,7 @@
/// EmitInitialDebugFrame - Emit common frame info into a debug frame section.
///
void Dwarf::EmitInitialDebugFrame() {
- if (TAI->getDwarfRequiresFrameSection())
+ if (!TAI->getDwarfRequiresFrameSection())
return;
int stackGrowth =
@@ -2665,7 +2665,7 @@
/// EmitFunctionDebugFrame - Emit per function frame info into a debug frame
/// section.
void Dwarf::EmitFunctionDebugFrame() {
- if (TAI->getDwarfRequiresFrameSection())
+ if (!TAI->getDwarfRequiresFrameSection())
return;
// Start the dwarf frame section.