mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
Don't run bugpoint if we can't find a misoptimization.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31582 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e4d8f33b0f
commit
dd2b95534f
@ -122,9 +122,13 @@ while [ ! -z "$switches" ] ; do
|
|||||||
echo "Next Loop"
|
echo "Next Loop"
|
||||||
done
|
done
|
||||||
|
|
||||||
echo "Smallest Optimization list= $final"
|
if [ "$final" == " $all_switches" ] ; then
|
||||||
|
echo "findmisopt: Can't find a set of optimizations that make it fail"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
echo "Smallest Optimization list=$final"
|
||||||
bpcmd="bugpoint -run-llc --output "$out" --input /dev/null $bcfile $final --args $args"
|
bpcmd="bugpoint -run-llc --output "$out" --input /dev/null $bcfile $final --args $args"
|
||||||
|
|
||||||
echo "Running: $bpcmd"
|
echo "Running: $bpcmd"
|
||||||
$bpcmd
|
$bpcmd
|
||||||
echo "Finished."
|
echo "findmisopt finished."
|
||||||
|
Loading…
Reference in New Issue
Block a user