mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-23 17:24:48 +00:00
Rename getConstantInt{True|False} to get{True|False} at Chris' behest.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76598 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -80,16 +80,16 @@ UndefValue* LLVMContext::getUndef(const Type* Ty) {
|
||||
}
|
||||
|
||||
// ConstantInt accessors.
|
||||
ConstantInt* LLVMContext::getConstantIntTrue() {
|
||||
ConstantInt* LLVMContext::getTrue() {
|
||||
assert(this && "Context not initialized!");
|
||||
assert(pImpl && "Context not initialized!");
|
||||
return pImpl->getConstantIntTrue();
|
||||
return pImpl->getTrue();
|
||||
}
|
||||
|
||||
ConstantInt* LLVMContext::getConstantIntFalse() {
|
||||
ConstantInt* LLVMContext::getFalse() {
|
||||
assert(this && "Context not initialized!");
|
||||
assert(pImpl && "Context not initialized!");
|
||||
return pImpl->getConstantIntFalse();
|
||||
return pImpl->getFalse();
|
||||
}
|
||||
|
||||
Constant* LLVMContext::getConstantInt(const Type* Ty, uint64_t V,
|
||||
|
Reference in New Issue
Block a user