From: Chris Lattner Date: Fri, 19 Dec 2003 19:48:43 +0000 (+0000) Subject: Eliminate a spurious warning X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=370e809107c5baf5671daa8709e7d981c0a89685;p=oota-llvm.git Eliminate a spurious warning git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10540 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl index 8e2c12e6356..daac2a488be 100755 --- a/utils/NightlyTest.pl +++ b/utils/NightlyTest.pl @@ -132,7 +132,7 @@ while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) { if (/^-notest$/) { $NOTEST = 1; $NORUNNINGTESTS = 1; next; } if (/^-norunningtests$/) { $NORUNNINGTESTS = 1; next; } if (/^-parallel$/) { $MAKEOPTS = "-j2 -l3.0"; next; } - if (/^-enable-linscan$/) { $ENABLELINEARSCAN = "ENABLE_LINEARSCAN=1"; } + if (/^-enable-linscan$/) { $ENABLELINEARSCAN = "ENABLE_LINEARSCAN=1"; next; } print "Unknown option: $_ : ignoring!\n"; }