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

Chris Lattner lattner at cs.uiuc.edu
Wed Jan 14 23:12:01 PST 2004


Changes in directory llvm-www/demo:

index.cgi updated: 1.19 -> 1.20

---
Log message:

Make bittermellon default to running the linktime optimizer


---
Diffs of the changes:  (+4 -3)

Index: llvm-www/demo/index.cgi
diff -u llvm-www/demo/index.cgi:1.19 llvm-www/demo/index.cgi:1.20
--- llvm-www/demo/index.cgi:1.19	Tue Dec  9 15:01:14 2003
+++ llvm-www/demo/index.cgi	Wed Jan 14 23:11:33 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: 2003/12/09 21:01:14 $
+# Last modified $Date: 2004/01/15 05:11:33 $
 #
 
 use CGI;
@@ -172,10 +172,11 @@
 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).  Note that for this to work, you have to define 'main' in your program.</p><ul>",
+"<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).  Note that for this to take effect, you have to define 'main' in your program.</p><ul>",
   $c->checkbox(
     -name  => 'linkopt',
-    -label => 'Run link-time optimizer'
+    -label => 'Run link-time optimizer',
+    -checked => 'checked'
   ),
   "</ul>";
 





More information about the llvm-commits mailing list