[llvm-commits] CVS: llvm-www/demo/index.cgi

Brian Gaeke gaeke at cs.uiuc.edu
Wed Feb 4 15:59:01 PST 2004


Changes in directory llvm-www/demo:

index.cgi updated: 1.20 -> 1.21

---
Log message:

llvm-gcc should emit warnings.


---
Diffs of the changes:  (+2 -2)

Index: llvm-www/demo/index.cgi
diff -u llvm-www/demo/index.cgi:1.20 llvm-www/demo/index.cgi:1.21
--- llvm-www/demo/index.cgi:1.20	Wed Jan 14 23:11:33 2004
+++ llvm-www/demo/index.cgi	Wed Feb  4 15:58:18 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/01/15 05:11:33 $
+# Last modified $Date: 2004/02/04 21:58:18 $
 #
 
 use CGI;
@@ -300,7 +300,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 $stats -o $bytecodeFile -c $inputFile > $outputFile 2>&1",
+        "llvm-gcc -Wall $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