Don't run bugpoint if we can't find a misoptimization.

llvm-svn: 31582
This commit is contained in:
Reid Spencer 2006-11-09 01:47:04 +00:00
parent 206d609cdd
commit c6389c10cc
1 changed files with 6 additions and 2 deletions

View File

@ -122,9 +122,13 @@ while [ ! -z "$switches" ] ; do
echo "Next Loop"
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"
echo "Running: $bpcmd"
$bpcmd
echo "Finished."
echo "findmisopt finished."