aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2011-06-30 22:35:49 +0000
committerBill Wendling <isanbard@gmail.com>2011-06-30 22:35:49 +0000
commitd221cd676b44d8118b1db152ecc2168538479626 (patch)
treeeb2cea6ec5b443518c1bbdbde89b35086c67e5e5 /lib
parentc747acb8d97d4df51d738383b49b8115519b88fb (diff)
downloadexternal_llvm-d221cd676b44d8118b1db152ecc2168538479626.zip
external_llvm-d221cd676b44d8118b1db152ecc2168538479626.tar.gz
external_llvm-d221cd676b44d8118b1db152ecc2168538479626.tar.bz2
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
Diffstat (limited to 'lib')
-rw-r--r--lib/MC/MCDwarf.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/MC/MCDwarf.cpp b/lib/MC/MCDwarf.cpp
index 1b24464..1a3596a 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;
}