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
This commit is contained in:
Dale Johannesen
2008-10-09 18:53:47 +00:00
parent a6bf66d0d6
commit 7111b02c73
15 changed files with 51 additions and 50 deletions

View File

@ -17,5 +17,5 @@
using namespace llvm;
void APFloat::Emit(Serializer& S) const {
S.Emit(convertToAPInt());
S.Emit(bitcastToAPInt());
}