use CallInst::ArgOffset
authorGabor Greif <ggreif@gmail.com>
Mon, 28 Jun 2010 12:30:07 +0000 (12:30 +0000)
committerGabor Greif <ggreif@gmail.com>
Mon, 28 Jun 2010 12:30:07 +0000 (12:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107003 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Utils/AddrModeMatcher.cpp

index 7b050e35ef5dc424518af381a244cdc48b85a91c..ce5472eb9be43c7df4a1b6d16fc2e4038a08a325 100644 (file)
@@ -382,7 +382,7 @@ static bool IsOperandAMemoryOperand(CallInst *CI, InlineAsm *IA, Value *OpVal,
   std::vector<InlineAsm::ConstraintInfo>
   Constraints = IA->ParseConstraints();
   
-  unsigned ArgNo = 1;   // ArgNo - The operand of the CallInst.
+  unsigned ArgNo = CallInst::ArgOffset;   // ArgNo - The operand of the CallInst.
   for (unsigned i = 0, e = Constraints.size(); i != e; ++i) {
     TargetLowering::AsmOperandInfo OpInfo(Constraints[i]);