summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorAmaury Sechet <deadalnix@gmail.com>2016-05-01 02:23:14 +0000
committerAmaury Sechet <deadalnix@gmail.com>2016-05-01 02:23:14 +0000
commit8a367d404f195c51415b71d8f30a06a542b0e2b9 (patch)
treed872dae96bc4abe7513268a6e4df278be11d1dd5 /llvm/lib
parent81243a73ef83dd6a90070683ec34ba096df22786 (diff)
downloadbcm5719-llvm-8a367d404f195c51415b71d8f30a06a542b0e2b9.tar.gz
bcm5719-llvm-8a367d404f195c51415b71d8f30a06a542b0e2b9.zip
Properly name LLVMSetIsInBounds's argument. NFC
llvm-svn: 268176
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/IR/Core.cpp4
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 .............................................--*/
OpenPOWER on IntegriCloud