forked from OSchip/llvm-project
This update was done with the following bash script:
find test/Transforms -name "*.ll" | \
while read NAME; do
echo "$NAME"
if ! grep -q "^; *RUN: *llc" $NAME; then
TEMP=`mktemp -t temp`
cp $NAME $TEMP
sed -n "s/^define [^@]*@\([A-Za-z0-9_]*\)(.*$/\1/p" < $NAME | \
while read FUNC; do
sed -i '' "s/;\(.*\)\([A-Za-z0-9_]*\):\( *\)@$FUNC\([( ]*\)\$/;\1\2-LABEL:\3@$FUNC(/g" $TEMP
done
mv $TEMP $NAME
fi
done
llvm-svn: 186268
|
||
|---|---|---|
| .. | ||
| 2003-04-25-AssertFail.ll | ||
| 2003-05-12-PreheaderExitOfChild.ll | ||
| 2003-08-15-PreheadersFail.ll | ||
| 2003-12-10-ExitBlocksProblem.ll | ||
| 2004-02-05-DominatorInfoCorruption.ll | ||
| 2004-03-15-IncorrectDomUpdate.ll | ||
| 2004-04-01-IncorrectDomUpdate.ll | ||
| 2004-04-12-LoopSimplify-SwitchBackedges.ll | ||
| 2004-04-13-LoopSimplifyUpdateDomFrontier.ll | ||
| 2007-10-28-InvokeCrash.ll | ||
| 2010-07-15-IncorrectDomFrontierUpdate.ll | ||
| 2010-12-26-PHIInfiniteLoop.ll | ||
| 2011-12-14-LandingpadHeader.ll | ||
| 2012-03-20-indirectbr.ll | ||
| basictest.ll | ||
| hardertest.ll | ||
| indirectbr-backedge.ll | ||
| indirectbr.ll | ||
| lit.local.cfg | ||
| merge-exits.ll | ||
| phi-node-simplify.ll | ||
| preserve-scev.ll | ||
| single-backedge.ll | ||
| unreachable-loop-pred.ll | ||