diff options
| author | Amaury Sechet <deadalnix@gmail.com> | 2016-05-01 02:23:14 +0000 |
|---|---|---|
| committer | Amaury Sechet <deadalnix@gmail.com> | 2016-05-01 02:23:14 +0000 |
| commit | 8a367d404f195c51415b71d8f30a06a542b0e2b9 (patch) | |
| tree | d872dae96bc4abe7513268a6e4df278be11d1dd5 /llvm/lib | |
| parent | 81243a73ef83dd6a90070683ec34ba096df22786 (diff) | |
| download | bcm5719-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.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 .............................................--*/ |

