[llvm-commits] CVS: llvm/tools/bugpoint/OptimizerDriver.cpp
Jeff Cohen
jeffc at jolt-lang.org
Tue Feb 15 21:05:42 PST 2005
Changes in directory llvm/tools/bugpoint:
OptimizerDriver.cpp updated: 1.28 -> 1.29
---
Log message:
Get bugpoint compiling with VC++ again, not that it works anyway.
---
Diffs of the changes: (+3 -1)
OptimizerDriver.cpp | 4 +++-
1 files changed, 3 insertions(+), 1 deletion(-)
Index: llvm/tools/bugpoint/OptimizerDriver.cpp
diff -u llvm/tools/bugpoint/OptimizerDriver.cpp:1.28 llvm/tools/bugpoint/OptimizerDriver.cpp:1.29
--- llvm/tools/bugpoint/OptimizerDriver.cpp:1.28 Sat Jan 22 11:37:13 2005
+++ llvm/tools/bugpoint/OptimizerDriver.cpp Tue Feb 15 23:05:31 2005
@@ -19,7 +19,9 @@
// independent code co-exist via conditional compilation until it is verified
// that the new code works correctly on Unix.
-//#define PLATFORMINDEPENDENT
+#ifdef _MSC_VER
+#define PLATFORMINDEPENDENT
+#endif
#include "BugDriver.h"
#include "llvm/Module.h"
More information about the llvm-commits
mailing list