[cfe-commits] r164568 - /cfe/trunk/lib/Sema/SemaStmtAsm.cpp

Chad Rosier mcrosier at apple.com
Mon Sep 24 15:58:50 PDT 2012


Author: mcrosier
Date: Mon Sep 24 17:58:50 2012
New Revision: 164568

URL: http://llvm.org/viewvc/llvm-project?rev=164568&view=rev
Log:
Update for r164567.

Modified:
    cfe/trunk/lib/Sema/SemaStmtAsm.cpp

Modified: cfe/trunk/lib/Sema/SemaStmtAsm.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaStmtAsm.cpp?rev=164568&r1=164567&r2=164568&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/SemaStmtAsm.cpp (original)
+++ cfe/trunk/lib/Sema/SemaStmtAsm.cpp Mon Sep 24 17:58:50 2012
@@ -582,8 +582,8 @@
       // 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) {





More information about the cfe-commits mailing list