forked from OSchip/llvm-project
MCParser: Update method names per coding guidelines.
s/ParseMSInlineAsm/parseMSInlineAsm/ llvm-svn: 175680
This commit is contained in:
parent
05785d1622
commit
6f54f787b4
|
@ -650,7 +650,7 @@ StmtResult Sema::ActOnMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc,
|
|||
SmallVector<std::pair<void *, bool>, 4> OpDecls;
|
||||
SmallVector<std::string, 4> Constraints;
|
||||
SmallVector<std::string, 4> Clobbers;
|
||||
if (Parser->ParseMSInlineAsm(AsmLoc.getPtrEncoding(), AsmStringIR,
|
||||
if (Parser->parseMSInlineAsm(AsmLoc.getPtrEncoding(), AsmStringIR,
|
||||
NumOutputs, NumInputs, OpDecls, Constraints,
|
||||
Clobbers, MII, IP, MCAPSI))
|
||||
return StmtError();
|
||||
|
|
Loading…
Reference in New Issue