diff options
Diffstat (limited to 'llvm/lib/IR')
-rw-r--r-- | llvm/lib/IR/Instructions.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/IR/Instructions.cpp b/llvm/lib/IR/Instructions.cpp index b8c72dd7e39..bba0ef2d7d3 100644 --- a/llvm/lib/IR/Instructions.cpp +++ b/llvm/lib/IR/Instructions.cpp @@ -369,7 +369,7 @@ bool CallInst::dataOperandHasImpliedAttr(unsigned i, assert(hasOperandBundles() && i >= (getBundleOperandsStartIndex() + 1) && "Must be either a call argument or an operand bundle!"); - return getOperandBundleForOperand(i - 1).operandsHaveAttr(A); + return bundleOperandHasAttr(i - 1, A); } /// IsConstantOne - Return true only if val is constant int 1 @@ -646,7 +646,7 @@ bool InvokeInst::dataOperandHasImpliedAttr(unsigned i, assert(hasOperandBundles() && i >= (getBundleOperandsStartIndex() + 1) && "Must be either an invoke argument or an operand bundle!"); - return getOperandBundleForOperand(i - 1).operandsHaveAttr(A); + return bundleOperandHasAttr(i - 1, A); } void InvokeInst::addAttribute(unsigned i, Attribute::AttrKind attr) { |