mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-01 01:31:26 +00:00
758053788b
This version is equivalent to commit ba26ebece8f5be84e9bd6315611d412af797147e in the old git repository. llvm-svn: 130476
12 lines
242 B
Bash
Executable File
12 lines
242 B
Bash
Executable File
#!/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}
|