[llvm-commits] CVS: llvm-test/MultiSource/Applications/SPASS/Makefile
Chris Lattner
lattner at cs.uiuc.edu
Sun Apr 24 21:43:33 PDT 2005
Changes in directory llvm-test/MultiSource/Applications/SPASS:
Makefile updated: 1.1 -> 1.2
---
Log message:
instead of using a custom memory allocator, just use malloc. This slows down
the program a little bit, but not enough to screw analysis :)
---
Diffs of the changes: (+1 -1)
Makefile | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm-test/MultiSource/Applications/SPASS/Makefile
diff -u llvm-test/MultiSource/Applications/SPASS/Makefile:1.1 llvm-test/MultiSource/Applications/SPASS/Makefile:1.2
--- llvm-test/MultiSource/Applications/SPASS/Makefile:1.1 Sun Apr 24 23:10:28 2005
+++ llvm-test/MultiSource/Applications/SPASS/Makefile Sun Apr 24 23:43:19 2005
@@ -1,7 +1,7 @@
LEVEL = ../../..
PROG = SPASS
-CFLAGS = -DCLOCK_NO_TIMING -w
+CFLAGS = -DCLOCK_NO_TIMING -w -DNO_MEMORY_MANAGEMENT
LDFLAGS = -lm
RUN_OPTIONS="$(PROJ_SRC_DIR)/problem.dfg"
More information about the llvm-commits
mailing list