1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Jello is now part of LLI

llvm-svn: 5122
This commit is contained in:
Chris Lattner 2002-12-23 23:51:19 +00:00
parent 6e80973050
commit 912f11f35d

View File

@ -1,6 +1,6 @@
# test/Regression/Jello/Makefile
#
# This directory contains regression tests for the LLVM jello program.
# This directory contains regression tests for the LLVM x86 JIT
#
LEVEL = ../../..
include $(LEVEL)/test/Makefile.tests
@ -10,9 +10,9 @@ FTESTS := $(wildcard *.llx) # Freeform tests
all:: $(addprefix Output/, $(TESTS:%.ll=%.out))
Output/%.out: Output/%.bc $(LJELLO)
Output/%.out: Output/%.bc $(LLI)
@echo "======== Running $< ==================="
$(VERB) jello -stats $< > $@ 2>&1 || \
$(VERB) $(LLI) -force-interpreter=false -stats $< > $@ 2>&1 || \
( cat $@; rm -f $@; $(FAILURE) $@ )