Use LLVM New Pass Manager #319

Merged
sb10q merged 1 commits from llvm-new-pass-manager into master 2024-08-17 17:37:20 +08:00

View File

@ -6,7 +6,7 @@ count=0
for demo in src/*.py; do for demo in src/*.py; do
echo -n "checking $demo... " echo -n "checking $demo... "
./interpret_demo.py $demo > interpreted.log ./interpret_demo.py $demo > interpreted.log
./run_demo.sh $demo > run.log ./run_demo.sh "$@" $demo > run.log
diff -Nau interpreted.log run.log diff -Nau interpreted.log run.log
echo "ok" echo "ok"
let "count+=1" let "count+=1"