diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-09-24 22:58:50 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-09-24 22:58:50 +0000 |
commit | 93b3eb77930a553ef49d9f2af9c877309a11da85 (patch) | |
tree | f2524c85ed12ca3de1fbfdb110398e4e95f9e96e /clang/lib/Sema/SemaStmtAsm.cpp | |
parent | c4734c8950c3b4ba92b7997767068e75acccb4f1 (diff) | |
download | bcm5719-llvm-93b3eb77930a553ef49d9f2af9c877309a11da85.tar.gz bcm5719-llvm-93b3eb77930a553ef49d9f2af9c877309a11da85.zip |
Update for r164567.
llvm-svn: 164568
Diffstat (limited to 'clang/lib/Sema/SemaStmtAsm.cpp')
-rw-r--r-- | clang/lib/Sema/SemaStmtAsm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Sema/SemaStmtAsm.cpp b/clang/lib/Sema/SemaStmtAsm.cpp index c0bcf2c15ef..922777e07de 100644 --- a/clang/lib/Sema/SemaStmtAsm.cpp +++ b/clang/lib/Sema/SemaStmtAsm.cpp @@ -582,8 +582,8 @@ StmtResult Sema::ActOnMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc, // FIXME: The getMCInstOperandNum() function does not work with tied // operands or custom converters. unsigned NumMCOperands; - unsigned MCIdx = TargetParser->getMCInstOperandNum(Kind, Inst, Operands, - i, NumMCOperands); + unsigned MCIdx = TargetParser->getMCInstOperandNum(Kind, Operands, i, + NumMCOperands); assert (NumMCOperands && "Expected at least 1 MCOperand!"); for (unsigned j = MCIdx, e = MCIdx + NumMCOperands; j != e; ++j) { |