diff options
Diffstat (limited to 'contrib/llvm-project/llvm/lib/IR/AbstractCallSite.cpp')
-rw-r--r-- | contrib/llvm-project/llvm/lib/IR/AbstractCallSite.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/llvm-project/llvm/lib/IR/AbstractCallSite.cpp b/contrib/llvm-project/llvm/lib/IR/AbstractCallSite.cpp index 6504e566ba4b..2e41799e13e9 100644 --- a/contrib/llvm-project/llvm/lib/IR/AbstractCallSite.cpp +++ b/contrib/llvm-project/llvm/lib/IR/AbstractCallSite.cpp @@ -121,7 +121,7 @@ AbstractCallSite::AbstractCallSite(const Use *U) assert(CallbackEncMD->getNumOperands() >= 2 && "Incomplete !callback metadata"); - unsigned NumCallOperands = CB->getNumArgOperands(); + unsigned NumCallOperands = CB->arg_size(); // Skip the var-arg flag at the end when reading the metadata. for (unsigned u = 0, e = CallbackEncMD->getNumOperands() - 1; u < e; u++) { Metadata *OpAsM = CallbackEncMD->getOperand(u).get(); |