1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

Properly name LLVMSetIsInBounds's argument. NFC

llvm-svn: 268176
This commit is contained in:
Amaury Sechet 2016-05-01 02:23:14 +00:00
parent 23403dab1a
commit 42f1d20448
2 changed files with 3 additions and 3 deletions

View File

@ -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);
/**
* @}

View File

@ -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 .............................................--*/