Changes in directory llvm-test:

Makefile.rules updated: 1.10 -> 1.11
---
Log message:

Adjust to reversed logic in LLVM's Makefile.rules. We now use the
make variable DISABLE_ASSERTIONS instead of ENABLE_ASSERTIONS.


---
Diffs of the changes:  (+1 -7)

 Makefile.rules |    8 +-------
 1 files changed, 1 insertion(+), 7 deletions(-)


Index: llvm-test/Makefile.rules
diff -u llvm-test/Makefile.rules:1.10 llvm-test/Makefile.rules:1.11
--- llvm-test/Makefile.rules:1.10       Sun Apr  9 02:18:00 2006
+++ llvm-test/Makefile.rules    Sun Apr  9 15:43:17 2006
@@ -150,14 +150,8 @@
 
 # If ENABLE_ASSERTIONS=1 is specified (make command line or configured),
 # then adjust the CONFIGURATION name appropriately (to match LLVM makefiles)
-ifdef ENABLE_ASSERTIONS
-  ifdef ENABLE_OPTIMIZED
-  CONFIGURATION := $(CONFIGURATION)+Asserts
-  endif
-else
-  ifndef ENABLE_OPTIMIZED
+ifdef DISABLE_ASSERTIONS
   CONFIGURATION := $(CONFIGURATION)-Asserts
-  endif
 endif
 
 #



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to