Displaying 1 result from an estimated 1 matches for "disable_for_llvm_programs".
2007 Oct 11
1
[LLVMdev] .ll test cases for tail call optimization in test-suite
...) i changed the rules
in the Makefile situated in the TailCall directory.
I want to compare the output of a file compile with normal llc with a
file compiled with llc -tailcallopt.
So my SingleSource/TailCall/Makefile looks like the following:
----
LEVEL = ../..
include $(LEVEL)/Makefile.config
#DISABLE_FOR_LLVM_PROGRAMS := 1
PROGRAM_REQUIRED_TO_EXIT_OK := 1
#REQUIRES_EH_SUPPORT := 1
PROGRAMS_TO_TEST :=
$(patsubst $(SourceDir)/%,%,$(basename $(wildcard $(SourceDir)/*.ll)))
include $(LEVEL)/Makefile.programs
.PRECIOUS: Output/%.linked.rll
Output/%.linked.rbc: Output/%.bc
-cp -f $< $@
# since ther...