Don't run bugpoint if we can't find a misoptimization.
authorReid Spencer <rspencer@reidspencer.com>
Thu, 9 Nov 2006 01:47:04 +0000 (01:47 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Thu, 9 Nov 2006 01:47:04 +0000 (01:47 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31582 91177308-0d34-0410-b5e6-96231b3b80d8

utils/findmisopt

index a6033ca88fa9f59578fdaa7d38df4bf69375ca14..dc564849457394a25f3b434fe9c32801ab7a66c1 100755 (executable)
@@ -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."