summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-12-19 19:48:43 +0000
committerChris Lattner <sabre@nondot.org>2003-12-19 19:48:43 +0000
commit370e809107c5baf5671daa8709e7d981c0a89685 (patch)
tree025d09542222d662502b98efabfde5be6403f61f /utils
parentbd1a90ecc77cfdf25125c96acaad1b4152fcd0de (diff)
downloadllvm-370e809107c5baf5671daa8709e7d981c0a89685.tar.gz
llvm-370e809107c5baf5671daa8709e7d981c0a89685.tar.bz2
llvm-370e809107c5baf5671daa8709e7d981c0a89685.tar.xz
Eliminate a spurious warning
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10540 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rwxr-xr-xutils/NightlyTest.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl
index 8e2c12e635..daac2a488b 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";
}