[llvm-commits] CVS: llvm-www/demo/index.cgi
Brian Gaeke
gaeke at cs.uiuc.edu
Thu Nov 20 18:23:00 PST 2003
Changes in directory llvm-www/demo:
index.cgi updated: 1.6 -> 1.7
---
Log message:
First try for gccld UI
---
Diffs of the changes: (+10 -1)
Index: llvm-www/demo/index.cgi
diff -u llvm-www/demo/index.cgi:1.6 llvm-www/demo/index.cgi:1.7
--- llvm-www/demo/index.cgi:1.6 Thu Nov 20 18:19:28 2003
+++ llvm-www/demo/index.cgi Thu Nov 20 18:22:26 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:19:28 $
+# Last modified $Date: 2003/11/21 00:22:26 $
#
use CGI;
@@ -160,11 +160,20 @@
print "</p>\n";
+print "<table><tr><td>";
print "<p>Click here if you want Bitter Melon to run the resulting code through c++filt. Warning, the LLVM code produced will probably not be lexically valid, but it will be easier to read.</p><ul>",
$c->checkbox(
-name => 'cxxdemangle',
-label => 'Demangle C++ names with c++filt'
), "</ul>";
+print "</td><td>";
+
+print "<p>Bitter Melon can also run the link-time optimizer for you, if you like (but she won't link your code with any libraries.)</p><ul>",
+ $c->checkbox(
+ -name => 'linkopt',
+ -label => 'Run link-time optimizer'
+), "</ul>";
+print "</td></tr></table>";
print "<p>", $c->submit, "\n", $c->endform;
More information about the llvm-commits
mailing list