diff options
author | Dale Johannesen <dalej@apple.com> | 2007-09-12 03:30:33 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2007-09-12 03:30:33 +0000 |
commit | 9d5f45607793052bf5b4436d1b43013fab9999ac (patch) | |
tree | da064f263b6242adf84ced2a98439707a6114ddd /lib/Bitcode/Writer | |
parent | 257500db0437b6089f46ccf58bcdf04ad8dae9d9 (diff) | |
download | external_llvm-9d5f45607793052bf5b4436d1b43013fab9999ac.zip external_llvm-9d5f45607793052bf5b4436d1b43013fab9999ac.tar.gz external_llvm-9d5f45607793052bf5b4436d1b43013fab9999ac.tar.bz2 |
Revise previous patch per review comments.
Next round of x87 long double stuff.
Getting close now, basically works.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41875 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bitcode/Writer')
-rw-r--r-- | lib/Bitcode/Writer/BitcodeWriter.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/Bitcode/Writer/BitcodeWriter.cpp b/lib/Bitcode/Writer/BitcodeWriter.cpp index 78a16d8..fdaa9be 100644 --- a/lib/Bitcode/Writer/BitcodeWriter.cpp +++ b/lib/Bitcode/Writer/BitcodeWriter.cpp @@ -526,11 +526,8 @@ static void WriteConstants(unsigned FirstVal, unsigned LastVal, } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(C)) { Code = bitc::CST_CODE_FLOAT; const Type *Ty = CFP->getType(); - if (Ty == Type::FloatTy) - Record.push_back((uint32_t)*CFP->getValueAPF().convertToAPInt(). - getRawData()); - else if (Ty == Type::DoubleTy) { - Record.push_back(*CFP->getValueAPF().convertToAPInt().getRawData()); + if (Ty == Type::FloatTy || Ty == Type::DoubleTy) { + Record.push_back(CFP->getValueAPF().convertToAPInt().getZExtValue()); } else if (Ty == Type::X86_FP80Ty) { const uint64_t *p = CFP->getValueAPF().convertToAPInt().getRawData(); Record.push_back(p[0]); |