diff options
author | Tanya Lattner <tonic@nondot.org> | 2008-10-22 21:46:49 +0000 |
---|---|---|
committer | Tanya Lattner <tonic@nondot.org> | 2008-10-22 21:46:49 +0000 |
commit | 43b4e355472b2c25e4ebf0946594945dc1f1b43a (patch) | |
tree | f81dcf4513c60b2f002f563fca5d9f74ffbd0a52 | |
parent | 60840c8b35d2b5da8d7151276333ce1000bb08a5 (diff) |
Fix build error.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_24@58004 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/CBackend/CBackend.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Target/CBackend/CBackend.cpp b/lib/Target/CBackend/CBackend.cpp index d1d2060fc7..759e23645f 100644 --- a/lib/Target/CBackend/CBackend.cpp +++ b/lib/Target/CBackend/CBackend.cpp @@ -1142,8 +1142,7 @@ void CWriter::printConstant(Constant *CPV, bool Static) { // This is not awesome, but it at least makes the CBE output somewhat // useful. APFloat Tmp = FPC->getValueAPF(); - bool LosesInfo; - Tmp.convert(APFloat::IEEEdouble, APFloat::rmTowardZero, &LosesInfo); + Tmp.convert(APFloat::IEEEdouble, APFloat::rmTowardZero); V = Tmp.convertToDouble(); } |