Rename ConstantFP's getInf to getInfinity.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82823 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman
2009-09-25 23:40:21 +00:00
parent 4b2ebc1928
commit a23643d5b7
3 changed files with 4 additions and 4 deletions

View File

@@ -436,7 +436,7 @@ ConstantFP* ConstantFP::get(LLVMContext &Context, const APFloat& V) {
return Slot;
}
ConstantFP *ConstantFP::getInf(const Type *Ty, bool Negative) {
ConstantFP *ConstantFP::getInfinity(const Type *Ty, bool Negative) {
const fltSemantics &Semantics = *TypeToFloatSemantics(Ty);
return ConstantFP::get(Ty->getContext(),
APFloat::getInf(Semantics, Negative));