You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
429 B
14 lines
429 B
.PRECIOUS: %.ll %.instrumented.ll
|
|
#-Instrument
|
|
TARGETS=simple0 simple1 simple2 branch0 branch1 branch2 infeasable
|
|
|
|
all: ${TARGETS}
|
|
|
|
%: %.c
|
|
clang -emit-llvm -S -fno-discard-value-names -c -o $@.ll $<
|
|
opt -enable-new-pm=0 -load ../build/InstrumentPass.so -Instrument -S $*.ll -o $*.instrumented.ll
|
|
clang -o $@ -L${PWD}/../build -lruntime $*.instrumented.ll
|
|
|
|
clean:
|
|
rm -f *.ll *.out *.err *.smt2 input.txt branch.txt ${TARGETS}
|