[llvm-commits] CVS: llvm/utils/NightlyTest.pl

Evan Cheng evan.cheng at apple.com
Tue Feb 7 23:28:34 PST 2006



Changes in directory llvm/utils:

NightlyTest.pl updated: 1.102 -> 1.103
---
Log message:

Remove -pedantic. It no longer works.

---
Diffs of the changes:  (+0 -5)

 NightlyTest.pl |    5 -----
 1 files changed, 5 deletions(-)


Index: llvm/utils/NightlyTest.pl
diff -u llvm/utils/NightlyTest.pl:1.102 llvm/utils/NightlyTest.pl:1.103
--- llvm/utils/NightlyTest.pl:1.102	Tue Jan 31 10:10:53 2006
+++ llvm/utils/NightlyTest.pl	Wed Feb  8 01:28:22 2006
@@ -22,7 +22,6 @@
 #  -nodejagnu       Do not run feature or regression tests
 #  -parallel        Run two parallel jobs with GNU Make.
 #  -release         Build an LLVM Release version
-#  -pedantic        Enable additional GCC warnings to detect possible errors.
 #  -enable-llcbeta  Enable testing of beta features in llc.
 #  -disable-llc     Disable LLC tests in the nightly tester.
 #  -disable-jit     Disable JIT tests in the nightly tester.
@@ -280,10 +279,6 @@
   if (/^-norunningtests$/) { $NORUNNINGTESTS = 1; next; }
   if (/^-parallel$/)       { $MAKEOPTS = "$MAKEOPTS -j2 -l3.0"; next; }
   if (/^-release$/)        { $MAKEOPTS = "$MAKEOPTS ENABLE_OPTIMIZED=1"; next; }
-  if (/^-pedantic$/)       { 
-      $MAKEOPTS = "$MAKEOPTS CompileOptimizeOpts='-O3 -DNDEBUG -finline-functions -Wpointer-arith -Wcast-align -Wno-deprecated -Wold-style-cast -Wabi -Woverloaded-virtual -ffor-scope'"; 
-      next; 
-  }
   if (/^-enable-llcbeta$/) { $PROGTESTOPTS .= " ENABLE_LLCBETA=1"; next; }
   if (/^-disable-llc$/)    { $PROGTESTOPTS .= " DISABLE_LLC=1";
                              $CONFIGUREARGS .= " --disable-llc_diffs"; next; }






More information about the llvm-commits mailing list