summaryrefslogtreecommitdiff
path: root/lib/Support
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2008-10-09 18:53:47 +0000
committerDale Johannesen <dalej@apple.com>2008-10-09 18:53:47 +0000
commit7111b02c734c992b8c97d9918118768026dad79e (patch)
treec6a444a3819e1ae62e870dd0040a8cd4f699d778 /lib/Support
parenta6bf66d0d6c1ed9bb657f72bc89c432c4ee96f63 (diff)
downloadllvm-7111b02c734c992b8c97d9918118768026dad79e.tar.gz
llvm-7111b02c734c992b8c97d9918118768026dad79e.tar.bz2
llvm-7111b02c734c992b8c97d9918118768026dad79e.tar.xz
Rename APFloat::convertToAPInt to bitcastToAPInt to
make it clearer what the function does. No functional change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57325 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support')
-rw-r--r--lib/Support/APFloat.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Support/APFloat.cpp b/lib/Support/APFloat.cpp
index df309d49c6..a8691f495a 100644
--- a/lib/Support/APFloat.cpp
+++ b/lib/Support/APFloat.cpp
@@ -695,7 +695,7 @@ APFloat::~APFloat()
// Profile - This method 'profiles' an APFloat for use with FoldingSet.
void APFloat::Profile(FoldingSetNodeID& ID) const {
- ID.Add(convertToAPInt());
+ ID.Add(bitcastToAPInt());
}
unsigned int
@@ -2617,7 +2617,7 @@ APFloat::convertFloatAPFloatToAPInt() const
// and treating the result as a normal integer is unlikely to be useful.
APInt
-APFloat::convertToAPInt() const
+APFloat::bitcastToAPInt() const
{
if (semantics == (const llvm::fltSemantics*)&IEEEsingle)
return convertFloatAPFloatToAPInt();
@@ -2637,7 +2637,7 @@ float
APFloat::convertToFloat() const
{
assert(semantics == (const llvm::fltSemantics*)&IEEEsingle);
- APInt api = convertToAPInt();
+ APInt api = bitcastToAPInt();
return api.bitsToFloat();
}
@@ -2645,7 +2645,7 @@ double
APFloat::convertToDouble() const
{
assert(semantics == (const llvm::fltSemantics*)&IEEEdouble);
- APInt api = convertToAPInt();
+ APInt api = bitcastToAPInt();
return api.bitsToDouble();
}