diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-10-19 09:18:37 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-10-19 09:18:37 +0000 |
commit | d081488280b55c5f11543cf70289eef722e7956c (patch) | |
tree | c66c728428faf83fcf8fc4c98535ecddbf089b0b /llvm/utils | |
parent | 4d9fb871d21d2e20df76a3627370d0a7e3f3d4a6 (diff) | |
download | bcm5719-llvm-d081488280b55c5f11543cf70289eef722e7956c.tar.gz bcm5719-llvm-d081488280b55c5f11543cf70289eef722e7956c.zip |
NNT: Remove -debug argument, it is unused.
llvm-svn: 84477
Diffstat (limited to 'llvm/utils')
-rwxr-xr-x | llvm/utils/NewNightlyTest.pl | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/utils/NewNightlyTest.pl b/llvm/utils/NewNightlyTest.pl index 7331069e32e..41792d6da4b 100755 --- a/llvm/utils/NewNightlyTest.pl +++ b/llvm/utils/NewNightlyTest.pl @@ -82,7 +82,6 @@ use Socket; # -parallel Run parallel jobs with GNU Make (see -parallel-jobs). # -parallel-jobs The number of parallel Make jobs to use (default is two). # -verbose Turn on some debug output -# -debug Print information useful only to maintainers of this script. # -nice Checkout/Configure/Build with "nice" to reduce impact # on busy servers. # -f2c Next argument specifies path to F2C utility @@ -194,7 +193,6 @@ while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) { if (/^-test-opts$/) { $PROGTESTOPTS .= " $ARGV[0]"; shift; next; } if (/^-verbose$/) { $VERBOSE = 1; next; } if (/^-teelogs$/) { $TEELOGS = 1; next; } - if (/^-debug$/) { $DEBUG = 1; next; } if (/^-nice$/) { $NICE = "nice "; next; } if (/^-f2c$/) { $CONFIGUREARGS .= " --with-f2c=$ARGV[0]"; shift; next; } |