mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
848c35ed1f
* Changes in PHI node structure * We now run DCE after inlining because it helps clean up LOTS of inlining gunk. llvm-svn: 26
14 lines
514 B
Bash
Executable File
14 lines
514 B
Bash
Executable File
#!/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
|
|
|
|
|
|
../tools/as/as < $1 | ../tools/opt/opt -q -inline -dce -constprop -dce | ../tools/dis/dis | ../tools/as/as > $1.bc.1 || exit 1
|
|
|
|
# Should not be able to optimize further!
|
|
../tools/opt/opt -q -constprop -dce < $1.bc.1 > $1.bc.2 || exit 2
|
|
|
|
diff $1.bc.[12] || exit 3
|
|
rm $1.bc.[12]
|
|
|