Add one more comment to the FDE verbose asm output.

llvm-svn: 134200
This commit is contained in:
Bill Wendling 2011-06-30 22:35:49 +00:00
parent 63769912fc
commit 80c39ac9a5

View File

@ -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;
}