diff options
author | Chris Lattner <sabre@nondot.org> | 2003-12-19 19:48:43 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-12-19 19:48:43 +0000 |
commit | 80a4508614aae5af88be0c6eea14c2b013e0d0cd (patch) | |
tree | 1d4f977a34f012d52a09ffda129cb5824eb8c576 /llvm | |
parent | fc7bdac1b3db03378a021d50b2cdd02433b73c25 (diff) | |
download | bcm5719-llvm-80a4508614aae5af88be0c6eea14c2b013e0d0cd.tar.gz bcm5719-llvm-80a4508614aae5af88be0c6eea14c2b013e0d0cd.zip |
Eliminate a spurious warning
llvm-svn: 10540
Diffstat (limited to 'llvm')
-rwxr-xr-x | llvm/utils/NightlyTest.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/NightlyTest.pl b/llvm/utils/NightlyTest.pl index 8e2c12e6356..daac2a488be 100755 --- a/llvm/utils/NightlyTest.pl +++ b/llvm/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"; } |