2001-06-06 20:29:01 +00:00
|
|
|
#!/bin/sh
|
|
|
|
LD_LIBRARY_PATH=../lib/Assembly/Parser/Debug:../lib/Assembly/Writer/Debug:../lib/Analysis/Debug:../lib/VMCore/Debug:../lib/Bytecode/Writer/Debug:../lib/Bytecode/Reader/Debug:../lib/Optimizations/Debug
|
|
|
|
export LD_LIBRARY_PATH
|
|
|
|
|
|
|
|
|
2001-06-11 15:05:02 +00:00
|
|
|
../tools/as/as < $1 | ../tools/opt/opt -q -inline -dce -constprop -dce | ../tools/dis/dis | ../tools/as/as > $1.bc.1 || exit 1
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
# Should not be able to optimize further!
|
2001-06-07 17:00:00 +00:00
|
|
|
../tools/opt/opt -q -constprop -dce < $1.bc.1 > $1.bc.2 || exit 2
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
diff $1.bc.[12] || exit 3
|
|
|
|
rm $1.bc.[12]
|
|
|
|
|