[llvm-commits] CVS: llvm/test/Regression/Jello/Makefile

Chris Lattner lattner at cs.uiuc.edu
Sat Dec 28 14:02:03 PST 2002


Changes in directory llvm/test/Regression/Jello:

Makefile updated: 1.4 -> 1.5

---
Log message:

Add capability to turn on the -no-fp-elim option


---
Diffs of the changes:

Index: llvm/test/Regression/Jello/Makefile
diff -u llvm/test/Regression/Jello/Makefile:1.4 llvm/test/Regression/Jello/Makefile:1.5
--- llvm/test/Regression/Jello/Makefile:1.4	Mon Dec 23 17:51:19 2002
+++ llvm/test/Regression/Jello/Makefile	Sat Dec 28 14:01:23 2002
@@ -10,9 +10,15 @@
 
 all:: $(addprefix Output/, $(TESTS:%.ll=%.out))
 
+LLI_FLAGS = -force-interpreter=false
+
+ifdef DISABLE_FP_ELIM
+LLI_FLAGS += -no-fp-elim
+endif
+
 Output/%.out: Output/%.bc $(LLI)
 	@echo "======== Running $< ==================="
-	$(VERB) $(LLI) -force-interpreter=false -stats $< > $@ 2>&1 || \
+	$(VERB) $(LLI) $(LLI_FLAGS) -stats $< > $@ 2>&1 || \
                  ( cat $@; rm -f $@; $(FAILURE) $@ )
 
 





More information about the llvm-commits mailing list