aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-10-19 15:24:04 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-10-19 15:24:04 +0000
commit93c456c4bd9bd5fc4091c6c0f695c2d40c065f6d (patch)
treec82a6621230f588801b0f86dbc744db9db218bed
parent20793115a85e4f9dc873b81f7bc32644519e9b20 (diff)
downloadexternal_llvm-93c456c4bd9bd5fc4091c6c0f695c2d40c065f6d.zip
external_llvm-93c456c4bd9bd5fc4091c6c0f695c2d40c065f6d.tar.gz
external_llvm-93c456c4bd9bd5fc4091c6c0f695c2d40c065f6d.tar.bz2
80 cols fix.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31050 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-xutils/NewNightlyTest.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/NewNightlyTest.pl b/utils/NewNightlyTest.pl
index 6101b0a..d08607a 100755
--- a/utils/NewNightlyTest.pl
+++ b/utils/NewNightlyTest.pl
@@ -136,7 +136,8 @@ while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) {
"OPTIMIZE_OPTION=-O2"; $BUILDTYPE="release"; next;}
if (/^-release-asserts$/){ $MAKEOPTS = "$MAKEOPTS ENABLE_OPTIMIZED=1 ".
"DISABLE-ASSERTIONS=1 ".
- "OPTIMIZE_OPTION=-O2"; $BUILDTYPE="release-asserts"; next;}
+ "OPTIMIZE_OPTION=-O2";
+ $BUILDTYPE="release-asserts"; next;}
if (/^-enable-llcbeta$/) { $PROGTESTOPTS .= " ENABLE_LLCBETA=1"; next; }
if (/^-disable-llc$/) { $PROGTESTOPTS .= " DISABLE_LLC=1";
$CONFIGUREARGS .= " --disable-llc_diffs"; next; }