[llvm-commits] [llvm-gcc-4.2] r102507 - /llvm-gcc-4.2/trunk/GNUmakefile
Bob Wilson
bob.wilson at apple.com
Wed Apr 28 11:12:33 PDT 2010
Author: bwilson
Date: Wed Apr 28 13:12:33 2010
New Revision: 102507
URL: http://llvm.org/viewvc/llvm-project?rev=102507&view=rev
Log:
Disable assertions by default (to match llvmCore) and fix comment.
Modified:
llvm-gcc-4.2/trunk/GNUmakefile
Modified: llvm-gcc-4.2/trunk/GNUmakefile
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/GNUmakefile?rev=102507&r1=102506&r2=102507&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/GNUmakefile (original)
+++ llvm-gcc-4.2/trunk/GNUmakefile Wed Apr 28 13:12:33 2010
@@ -60,9 +60,9 @@
ENABLE_LLVM = false
endif
-# Unless assertions are forced on in the GMAKE command line, enable them.
+# Unless assertions are forced on in the GMAKE command line, disable them.
ifndef ENABLE_ASSERTIONS
-ENABLE_ASSERTIONS := yes
+ENABLE_ASSERTIONS := no
endif
ifndef LLVMCORE_PATH
More information about the llvm-commits
mailing list