Change the assertions defaults:
1. Assertions now default to on for all builds
2. If you want them disabled you must (a) --disable-assertions to configure
   or DISABLE_ASSERTIONS=1 to make.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27548 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/Makefile.config.in b/Makefile.config.in
index fbb3475..8d25a73 100644
--- a/Makefile.config.in
+++ b/Makefile.config.in
@@ -186,8 +186,8 @@
 
 # When ENABLE_ASSERTIONS is enabled, builds of all of the LLVM code will include
 # assertion checks, otherwise they are not included.
-#ENABLE_ASSERTIONS = 1
-@ENABLE_ASSERTIONS@
+#DISABLE_ASSERTIONS = 1
+@DISABLE_ASSERTIONS@
 
 # When DEBUG_RUNTIME is enabled, the runtime libraries will retain debug
 # symbols.