[llvm-commits] [llvm] r84619 - /llvm/trunk/utils/NewNightlyTest.pl
Daniel Dunbar
daniel at zuster.org
Tue Oct 20 00:30:46 PDT 2009
Author: ddunbar
Date: Tue Oct 20 02:30:46 2009
New Revision: 84619
URL: http://llvm.org/viewvc/llvm-project?rev=84619&view=rev
Log:
NNT: Remove unused BUILDTYPE argument.
Modified:
llvm/trunk/utils/NewNightlyTest.pl
Modified: llvm/trunk/utils/NewNightlyTest.pl
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/NewNightlyTest.pl?rev=84619&r1=84618&r2=84619&view=diff
==============================================================================
--- llvm/trunk/utils/NewNightlyTest.pl (original)
+++ llvm/trunk/utils/NewNightlyTest.pl Tue Oct 20 02:30:46 2009
@@ -164,11 +164,10 @@
if (/^-parallel-test$/) { $PROGTESTOPTS .= " ENABLE_PARALLEL_REPORT=1"; next; }
if (/^-with-clang$/) { $WITHCLANG = 1; next; }
if (/^-release$/) { $MAKEOPTS = "$MAKEOPTS ENABLE_OPTIMIZED=1 ".
- "OPTIMIZE_OPTION=-O2"; $BUILDTYPE="release"; next;}
+ "OPTIMIZE_OPTION=-O2"; next;}
if (/^-release-asserts$/){ $MAKEOPTS = "$MAKEOPTS ENABLE_OPTIMIZED=1 ".
"DISABLE_ASSERTIONS=1 ".
- "OPTIMIZE_OPTION=-O2";
- $BUILDTYPE="release-asserts"; next;}
+ "OPTIMIZE_OPTION=-O2"; next;}
if (/^-enable-llcbeta$/) { $PROGTESTOPTS .= " ENABLE_LLCBETA=1"; next; }
if (/^-disable-pic$/) { $CONFIGUREARGS .= " --enable-pic=no"; next; }
if (/^-enable-lli$/) { $PROGTESTOPTS .= " ENABLE_LLI=1";
@@ -257,10 +256,6 @@
"\"-nickname <nickname>\"");
}
-if ($BUILDTYPE ne "release" && $BUILDTYPE ne "release-asserts") {
- $BUILDTYPE = "debug";
-}
-
if ($CONFIG_PATH ne "") {
die "error: -config mode is not yet implemented,";
}
More information about the llvm-commits
mailing list