[llvm-commits] CVS: llvm-www/demo/index.cgi
Brian Gaeke
gaeke at cs.uiuc.edu
Thu Nov 20 18:32:01 PST 2003
Changes in directory llvm-www/demo:
index.cgi updated: 1.8 -> 1.9
---
Log message:
Make noise less vertically spacey.
---
Diffs of the changes: (+5 -3)
Index: llvm-www/demo/index.cgi
diff -u llvm-www/demo/index.cgi:1.8 llvm-www/demo/index.cgi:1.9
--- llvm-www/demo/index.cgi:1.8 Thu Nov 20 18:26:08 2003
+++ llvm-www/demo/index.cgi Thu Nov 20 18:31:22 2003
@@ -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: 2003/11/21 00:26:08 $
+# Last modified $Date: 2003/11/21 00:31:22 $
#
use CGI;
@@ -279,7 +279,7 @@
$outputFile );
if ( $c->param('linkopt') ) {
- print "<p>Running link-time optimizer.</p>\n";
+ print " Running link-time optimizer.\n";
my $tmpFile = getname(".bc");
system("gccld --link-as-library -o=$tmpFile $outputFile 2>&1");
system("mv $tmpFile $outputFile");
@@ -290,8 +290,10 @@
"llvm-dis -o=$disassemblyFile $bytecodeFile > $outputFile 2>&1",
$outputFile );
+ print " Bytecode size is ", -s $outputFile, " bytes.\n";
+
if ( $c->param('cxxdemangle') ) {
- print "<p>Demangling disassembler output.</p>\n";
+ print " Demangling disassembler output.\n";
my $tmpFile = getname(".ll");
system("c++filt < $disassemblyFile > $tmpFile 2>&1");
system("mv $tmpFile $disassemblyFile");
More information about the llvm-commits
mailing list