From dd2b95534f866ec6f31df101624a715612c97ffa Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Thu, 9 Nov 2006 01:47:04 +0000 Subject: 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 --- utils/findmisopt | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/utils/findmisopt b/utils/findmisopt index a6033ca88f..dc56484945 100755 --- a/utils/findmisopt +++ b/utils/findmisopt @@ -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." -- cgit v1.2.3