[llvm-commits] [124302] work around PR1224 for now
clattner at apple.com
clattner at apple.com
Sun Feb 25 10:44:41 PST 2007
Revision: 124302
Author: clattner
Date: 2007-02-25 10:44:39 -0800 (Sun, 25 Feb 2007)
Log Message:
-----------
work around PR1224 for now
Modified Paths:
--------------
apple-local/branches/llvm/gcc/llvm-backend.cpp
Modified: apple-local/branches/llvm/gcc/llvm-backend.cpp
===================================================================
--- apple-local/branches/llvm/gcc/llvm-backend.cpp 2007-02-25 12:26:16 UTC (rev 124301)
+++ apple-local/branches/llvm/gcc/llvm-backend.cpp 2007-02-25 18:44:39 UTC (rev 124302)
@@ -104,8 +104,9 @@
Args.push_back("--disable-fp-elim");
if (!flag_zero_initialized_in_bss)
Args.push_back("--nozero-initialized-in-bss");
- if (flag_exceptions)
- Args.push_back("--enable-eh");
+// Disabled until PR1224 is resolved.
+ //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