diff options
author | Chris Lattner <sabre@nondot.org> | 2004-02-24 18:34:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-02-24 18:34:10 +0000 |
commit | 2bcab1f900abb6f19caf65b75bf14d2813913a0b (patch) | |
tree | 93fe97810b3e9bf7ff320e96e52e64f0ee27eb74 /lib | |
parent | d38f208cd97832babc72abe0f4887fbcb5d44b11 (diff) |
Fix some unexpected fallout from the config.h changes. Because the CBE no
longer was getting this #include, it always fell back on the less precise
floating point initializer values, causing some testsuite failures.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11803 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/CBackend/CBackend.cpp | 1 | ||||
-rw-r--r-- | lib/Target/CBackend/Writer.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/lib/Target/CBackend/CBackend.cpp b/lib/Target/CBackend/CBackend.cpp index 93e5b07f5f..89819dace3 100644 --- a/lib/Target/CBackend/CBackend.cpp +++ b/lib/Target/CBackend/CBackend.cpp @@ -31,6 +31,7 @@ #include "llvm/Support/InstVisitor.h" #include "llvm/Support/Mangler.h" #include "Support/StringExtras.h" +#include "Config/config.h" #include <algorithm> #include <sstream> using namespace llvm; diff --git a/lib/Target/CBackend/Writer.cpp b/lib/Target/CBackend/Writer.cpp index 93e5b07f5f..89819dace3 100644 --- a/lib/Target/CBackend/Writer.cpp +++ b/lib/Target/CBackend/Writer.cpp @@ -31,6 +31,7 @@ #include "llvm/Support/InstVisitor.h" #include "llvm/Support/Mangler.h" #include "Support/StringExtras.h" +#include "Config/config.h" #include <algorithm> #include <sstream> using namespace llvm; |