diff options
Diffstat (limited to 'llvm/lib/IR/Core.cpp')
-rw-r--r-- | llvm/lib/IR/Core.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/IR/Core.cpp b/llvm/lib/IR/Core.cpp index 416687b5e42..d69e8d59d01 100644 --- a/llvm/lib/IR/Core.cpp +++ b/llvm/lib/IR/Core.cpp @@ -2215,8 +2215,8 @@ LLVMBool LLVMIsInBounds(LLVMValueRef GEP) { return unwrap<GetElementPtrInst>(GEP)->isInBounds(); } -void LLVMSetIsInBounds(LLVMValueRef GEP, LLVMBool b) { - return unwrap<GetElementPtrInst>(GEP)->setIsInBounds(b); +void LLVMSetIsInBounds(LLVMValueRef GEP, LLVMBool InBounds) { + return unwrap<GetElementPtrInst>(GEP)->setIsInBounds(InBounds); } /*--.. Operations on phi nodes .............................................--*/ |