search for: thisidentifier

Displaying 1 result from an estimated 1 matches for "thisidentifier".

2013 Dec 19
1
[LLVMdev] [PATCH] MC: handle .cfi_startproc simple
...@@ -2736,9 +2736,13 @@ bool AsmParser::ParseDirectiveCFISections() { > } > > /// ParseDirectiveCFIStartProc > -/// ::= .cfi_startproc > +/// ::= .cfi_startproc [simple] > bool AsmParser::ParseDirectiveCFIStartProc() { > - getStreamer().EmitCFIStartProc(); > + StringRef ThisIdentifier; > + bool Simple = false; > + if (!parseIdentifier(ThisIdentifier) && ThisIdentifier == "simple") > + Simple = true; > + getStreamer().EmitCFIStartProc(Simple); > return false; > } > > diff --git a/lib/MC/MCStreamer.cpp b/lib/MC/MCStreamer.cpp &gt...