Forbid arrays of function-type and structures with function-typed fields.
[llvm/avr.git] / test / CodeGen / Generic / Makefile
blob26ebc316a215b1cc02c3003263cf61100b22d113
1 # Makefile for running ad-hoc custom LLVM tests
3 %.bc: %.ll
4 llvm-as $<
6 %.llc.s: %.bc
7 llc $< -o $@
9 %.gcc.s: %.c
10 gcc -O0 -S $< -o $@
12 %.nat: %.s
13 gcc -O0 -lm $< -o $@
15 %.cbe.out: %.cbe.nat
16 ./$< > $@
18 %.out: %.nat
19 ./$< > $@
21 %.clean:
22 rm -f $(patsubst %.clean,%.bc,$@) $(patsubst %.clean,%.*.s,$@) \
23 $(patsubst %.clean,%.*.nat,$@) $(patsubst %.clean,%.*.out,$@)