[llvm-commits] CVS: llvm/lib/Target/CBackend/Writer.cpp

Chris Lattner lattner at cs.uiuc.edu
Tue Feb 24 12:35:01 PST 2004


Changes in directory llvm/lib/Target/CBackend:

Writer.cpp updated: 1.163 -> 1.164

---
Log message:

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.


---
Diffs of the changes:  (+1 -0)

Index: llvm/lib/Target/CBackend/Writer.cpp
diff -u llvm/lib/Target/CBackend/Writer.cpp:1.163 llvm/lib/Target/CBackend/Writer.cpp:1.164
--- llvm/lib/Target/CBackend/Writer.cpp:1.163	Thu Feb 19 23:49:22 2004
+++ llvm/lib/Target/CBackend/Writer.cpp	Tue Feb 24 12:34:10 2004
@@ -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;





More information about the llvm-commits mailing list