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/include/llvm-c/Core.h | |
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/include/llvm-c/Core.h')
-rw-r--r-- | llvm/include/llvm-c/Core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm-c/Core.h b/llvm/include/llvm-c/Core.h index d443d897c97..7ec8b8cffff 100644 --- a/llvm/include/llvm-c/Core.h +++ b/llvm/include/llvm-c/Core.h @@ -2705,7 +2705,7 @@ LLVMBool LLVMIsInBounds(LLVMValueRef GEP); /** * Set the given GEP instruction to be inbounds or not. */ -void LLVMSetIsInBounds(LLVMValueRef GEP, LLVMBool b); +void LLVMSetIsInBounds(LLVMValueRef GEP, LLVMBool InBounds); /** * @} |