core translator phases now emit identical binaries

This commit is contained in:
Kartik Agaram 2020-04-10 15:28:10 -07:00
parent 454691bbc1
commit 99c3cfddff
2 changed files with 3 additions and 3 deletions

View File

@ -304,7 +304,7 @@ echo "== translating using SubX (native only)"
for n in `seq 1 12` for n in `seq 1 12`
do do
echo ex$n echo ex$n
./translate_subx_debug init.$OS apps/ex$n.subx ./translate_subx init.$OS apps/ex$n.subx
diff apps/ex$n a.elf diff apps/ex$n a.elf
done done
@ -313,7 +313,7 @@ done
for app in factorial crenshaw2-1 crenshaw2-1b for app in factorial crenshaw2-1 crenshaw2-1b
do do
echo $app echo $app
./translate_subx_debug init.$OS 0[0-8]*.subx apps/$app.subx ./translate_subx init.$OS 0[0-8]*.subx apps/$app.subx
diff apps/$app a.elf diff apps/$app a.elf
done done

View File

@ -15,7 +15,7 @@
# sets of debug files.) # sets of debug files.)
# Again, that's for subsequent scripts. # Again, that's for subsequent scripts.
set -ev set -e
./build ./build