aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ADT
diff options
context:
space:
mode:
authorMichael Gottesman <mgottesman@apple.com>2013-06-27 21:58:19 +0000
committerMichael Gottesman <mgottesman@apple.com>2013-06-27 21:58:19 +0000
commit4dfc257a1ad58be07753bfb96377869cb5dcf8e7 (patch)
tree33ff45d8c5e2491619f04d57594c87dbde38993a /include/llvm/ADT
parentd6bd98d01c3db23f9a66b1f1b2d3e65eef65382e (diff)
downloadexternal_llvm-4dfc257a1ad58be07753bfb96377869cb5dcf8e7.zip
external_llvm-4dfc257a1ad58be07753bfb96377869cb5dcf8e7.tar.gz
external_llvm-4dfc257a1ad58be07753bfb96377869cb5dcf8e7.tar.bz2
Revert "Revert "[APFloat] Removed APFloat constructor which initialized to either zero/NaN but allowed you to arbitrarily set the category of the float.""
This reverts commit r185099. Looks like both the ppc-64 and mips bots are still failing after I reverted this change. Since: 1. The mips bot always performs a clean build, 2. The ppc64-bot failed again after a clean build (I asked the ppc-64 maintainers to clean the bot which they did... Thanks Will!), I think it is safe to assume that this change was not the cause of the failures that said builders were seeing. Thus I am recomitting. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185111 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT')
-rw-r--r--include/llvm/ADT/APFloat.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/llvm/ADT/APFloat.h b/include/llvm/ADT/APFloat.h
index 7e71dd3..4ccb96a 100644
--- a/include/llvm/ADT/APFloat.h
+++ b/include/llvm/ADT/APFloat.h
@@ -191,7 +191,6 @@ public:
APFloat(const fltSemantics &); // Default construct to 0.0
APFloat(const fltSemantics &, StringRef);
APFloat(const fltSemantics &, integerPart);
- APFloat(const fltSemantics &, fltCategory, bool negative);
APFloat(const fltSemantics &, uninitializedTag);
APFloat(const fltSemantics &, const APInt &);
explicit APFloat(double d);