mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-17 04:50:15 +00:00
Properly name LLVMSetIsInBounds's argument. NFC
llvm-svn: 268176
This commit is contained in:
parent
81243a73ef
commit
8a367d404f
@ -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);
|
||||
|
||||
/**
|
||||
* @}
|
||||
|
@ -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 .............................................--*/
|
||||
|
Loading…
Reference in New Issue
Block a user