From: Bill Wendling Date: Thu, 30 Jun 2011 22:35:49 +0000 (+0000) Subject: Add one more comment to the FDE verbose asm output. X-Git-Tag: android-x86-6.0-r1~952^2~27 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=d221cd676b44d8118b1db152ecc2168538479626;p=android-x86%2Fexternal-llvm.git Add one more comment to the FDE verbose asm output. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134200 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/MC/MCDwarf.cpp b/lib/MC/MCDwarf.cpp index 1b244645f8c..1a3596a234e 100644 --- a/lib/MC/MCDwarf.cpp +++ b/lib/MC/MCDwarf.cpp @@ -670,6 +670,7 @@ void FrameEmitterImpl::EmitCFIInstructions(MCStreamer &streamer, if (BaseLabel && Label) { MCSymbol *ThisSym = Label; if (ThisSym != BaseLabel) { + if (streamer.isVerboseAsm()) streamer.AddComment("DW_CFA_advance_loc4"); streamer.EmitDwarfAdvanceFrameAddr(BaseLabel, ThisSym); BaseLabel = ThisSym; }