Rename getConstantInt{True|False} to get{True|False} at Chris' behest.
[oota-llvm.git] / lib / VMCore / LLVMContext.cpp
index bb3762bd813843ddd95cecd0c0ac0e6f28291efe..5e009ea6dffef65dfc1894d98bcb5ac66dcccb8d 100644 (file)
@@ -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,