[llvm-commits] [llvm-gcc-4.0] r41534 - /llvm-gcc-4.0/trunk/gcc/llvm-backend.cpp
Duncan Sands
baldrick at free.fr
Mon Aug 27 23:36:41 PDT 2007
Author: baldrick
Date: Tue Aug 28 01:36:41 2007
New Revision: 41534
URL: http://llvm.org/viewvc/llvm-project?rev=41534&view=rev
Log:
Turn off eh codegen because it breaks the x86
darwin build.
Modified:
llvm-gcc-4.0/trunk/gcc/llvm-backend.cpp
Modified: llvm-gcc-4.0/trunk/gcc/llvm-backend.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.0/trunk/gcc/llvm-backend.cpp?rev=41534&r1=41533&r2=41534&view=diff
==============================================================================
--- llvm-gcc-4.0/trunk/gcc/llvm-backend.cpp (original)
+++ llvm-gcc-4.0/trunk/gcc/llvm-backend.cpp Tue Aug 28 01:36:41 2007
@@ -122,8 +122,9 @@
Args.push_back("--debug-pass=Structure");
if (flag_debug_pass_arguments)
Args.push_back("--debug-pass=Arguments");
- if (flag_exceptions)
- Args.push_back("--enable-eh");
+// Breaks the x86-darwin build
+// if (flag_exceptions)
+// Args.push_back("--enable-eh");
// If there are options that should be passed through to the LLVM backend
// directly from the command line, do so now. This is mainly for debugging
More information about the llvm-commits
mailing list