From: Reid Spencer Date: Mon, 30 Oct 2006 23:34:32 +0000 (+0000) Subject: Fix a problem introduced by a last-minute change (logic negation). X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=0de0c5da429f8651eeccbcbe68feab23054bd55d;p=oota-llvm.git 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 40de586a3e5..983d8f51821 100644 --- a/lib/CodeGen/DwarfWriter.cpp +++ b/lib/CodeGen/DwarfWriter.cpp @@ -2627,7 +2627,7 @@ void Dwarf::EmitDebugLines() const { /// 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 @@ void Dwarf::EmitInitialDebugFrame() { /// 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.