mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-01 01:31:26 +00:00
12 lines
242 B
Bash
12 lines
242 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
clang -S -emit-llvm -O0 $1
|
||
|
|
||
|
SFILE=`echo $1 | sed -e 's/\.c/.s/g'`
|
||
|
LLFILE=`echo $1 | sed -e 's/\.c/.ll/g'`
|
||
|
|
||
|
opt -correlated-propagation -mem2reg -instcombine -loop-simplify -indvars \
|
||
|
-instnamer ${SFILE} -S > ${LLFILE}
|
||
|
|
||
|
rm ${SFILE}
|