diff options
author | Jeff Cohen <jeffc@jolt-lang.org> | 2005-02-16 05:05:31 +0000 |
---|---|---|
committer | Jeff Cohen <jeffc@jolt-lang.org> | 2005-02-16 05:05:31 +0000 |
commit | e21027904714d884d54080598d15361703ffdec6 (patch) | |
tree | be86557d5bacba78d2ae8c2c831540cca57aa277 | |
parent | e5f7e65f95a2a4e0145dbdc021b50034339f11d4 (diff) | |
download | external_llvm-e21027904714d884d54080598d15361703ffdec6.zip external_llvm-e21027904714d884d54080598d15361703ffdec6.tar.gz external_llvm-e21027904714d884d54080598d15361703ffdec6.tar.bz2 |
Get bugpoint compiling with VC++ again, not that it works anyway.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20211 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/bugpoint/OptimizerDriver.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/bugpoint/OptimizerDriver.cpp b/tools/bugpoint/OptimizerDriver.cpp index c922f5c..27698bd 100644 --- a/tools/bugpoint/OptimizerDriver.cpp +++ b/tools/bugpoint/OptimizerDriver.cpp @@ -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" |