[llvm-commits] CVS: llvm-www/demo/index.cgi
Chris Lattner
lattner at cs.uiuc.edu
Tue May 11 13:44:04 PDT 2004
Changes in directory llvm-www/demo:
index.cgi updated: 1.23 -> 1.24
---
Log message:
Enable more warnings
---
Diffs of the changes: (+2 -2)
Index: llvm-www/demo/index.cgi
diff -u llvm-www/demo/index.cgi:1.23 llvm-www/demo/index.cgi:1.24
--- llvm-www/demo/index.cgi:1.23 Mon Mar 29 13:20:30 2004
+++ llvm-www/demo/index.cgi Tue May 11 13:44:17 2004
@@ -5,7 +5,7 @@
# doing remote web JO99C compilations. (It could still be used for that
# purpose, though the two scripts have diverged somewhat.)
#
-# Last modified $Date: 2004/03/29 19:20:30 $
+# Last modified $Date: 2004/05/11 18:44:17 $
#
use CGI;
@@ -309,7 +309,7 @@
$stats = "-Wa,--stats,--time-passes,--info-output-file=$timerFile"
if ( $c->param('showstats') );
try_run( "llvm C/C++ front-end (llvm-gcc)",
- "llvm-gcc -Wall $stats -o $bytecodeFile -c $inputFile > $outputFile 2>&1",
+ "llvm-gcc -W -Wall -O2 $stats -o $bytecodeFile -c $inputFile > $outputFile 2>&1",
$outputFile );
if ( $c->param('showstats') && -s $timerFile ) {
( $UnhilightedResult, $HtmlResult ) =
More information about the llvm-commits
mailing list