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

Chris Lattner sabre at nondot.org
Tue Jan 20 13:17:11 PST 2009



Changes in directory llvm-www/demo:

index.cgi updated: 1.90 -> 1.91
---
Log message:

stkrc is gone.


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

 index.cgi |   20 +++++---------------
 1 files changed, 5 insertions(+), 15 deletions(-)


Index: llvm-www/demo/index.cgi
diff -u llvm-www/demo/index.cgi:1.90 llvm-www/demo/index.cgi:1.91
--- llvm-www/demo/index.cgi:1.90	Mon Nov 10 00:48:14 2008
+++ llvm-www/demo/index.cgi	Tue Jan 20 15:16:49 2009
@@ -295,7 +295,6 @@
     'JO99'             => '.jo9',
     'C'                => '.c',
     'C++'              => '.cc',
-    'Stacker'          => '.st',
     'preprocessed C'   => '.i',
     'preprocessed C++' => '.ii'
 );
@@ -306,8 +305,7 @@
     '.i'    => 'preprocessed C',
     '.ii'   => 'preprocessed C++',
     '.cc'   => 'C++',
-    '.cpp'  => 'C++',
-    '.st'   => 'Stacker'
+    '.cpp'  => 'C++'
 );
 
 my $uploaded_file_name = $c->param('uploaded_file');
@@ -352,20 +350,12 @@
     my $timerFile    = getname(".llvm-gcc.time");
 
     my $stats = '';
-    if ( $extension eq ".st" ) {
-      $stats = "-stats -time-passes "
+    #$stats = "-Wa,--stats,--time-passes,--info-output-file=$timerFile"
+    $stats = "-ftime-report"
 	if ( $c->param('showstats') );
-      try_run( "llvm Stacker front-end (stkrc)",
-        "stkrc $stats -o $bytecodeFile $inputFile > $outputFile 2>&1",
-        $outputFile );
-    } else {
-      #$stats = "-Wa,--stats,--time-passes,--info-output-file=$timerFile"
-      $stats = "-ftime-report"
-	if ( $c->param('showstats') );
-      try_run( "llvm C/C++ front-end (llvm-gcc)",
+    try_run( "llvm C/C++ front-end (llvm-gcc)",
 	"llvm-gcc -emit-llvm -W -Wall -O2 $stats -o $bytecodeFile -c $inputFile > $outputFile 2>&1",
-        $outputFile );
-    }
+      $outputFile );
 
     if ( $c->param('showstats') && -s $timerFile ) {
         my ( $UnhilightedResult, $HtmlResult ) =






More information about the llvm-commits mailing list