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

Chris Lattner lattner at cs.uiuc.edu
Mon Mar 29 13:36:05 PST 2004


Changes in directory llvm-www/demo:

index.cgi updated: 1.22 -> 1.23

---
Log message:

Hack on prose a bit


---
Diffs of the changes:  (+11 -6)

Index: llvm-www/demo/index.cgi
diff -u llvm-www/demo/index.cgi:1.22 llvm-www/demo/index.cgi:1.23
--- llvm-www/demo/index.cgi:1.22	Wed Feb  4 16:11:22 2004
+++ llvm-www/demo/index.cgi	Mon Mar 29 13:20:30 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/02/04 22:11:22 $
+# Last modified $Date: 2004/03/29 19:20:30 $
 #
 
 use CGI;
@@ -165,7 +165,7 @@
 
 print "<table border><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>",
+"<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 understand.</p><ul>",
   $c->checkbox(
     -name  => 'cxxdemangle',
     -label => 'Demangle C++ names with c++filt'
@@ -174,7 +174,7 @@
 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 take effect, 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 you have to define 'main' in your program for this to make much of a difference.</p><ul>",
   $c->checkbox(
     -name  => 'linkopt',
     -label => 'Run link-time optimizer',
@@ -185,7 +185,7 @@
 print "</td><td>";
 
 print
-"<p>Would you believe the cat even has a stopwatch? Click here to get detailed compilation statistics from each pass.</p><ul>",
+"<p>Would you believe the cat even has a stopwatch? Click here to get detailed compilation statistic and timings from each pass.</p><ul>",
   $c->checkbox(
     -name  => 'showstats',
     -label => 'Show detailed statistics'
@@ -195,8 +195,13 @@
 
 print "<p>", $c->submit, "\n", $c->endform;
 
-print
-"\n<p>If you have questions about the LLVM code generated by the front-end, please <a href='/docs/FAQ.html#cfe_code'>check the FAQ</a>, your question just might be answered (e.g., what is this <tt>__main</tt> thing?).</p>\n";
+print "\n<p>If you have questions about the LLVM code generated by the
+front-end, please <a href='/docs/FAQ.html#cfe_code'>check the FAQ</a> (e.g.,
+what is this <tt>__main</tt> thing?).  If the FAQ does not address it, please
+send an email to the <a
+href='http://mail.cs.uiuc.edu/mailman/listinfo/llvmdev'>llvmdev mailing
+list</a>.</p>\n<p>Note that the generated LLVM code will be easier to read if
+you use stdio (e.g., printf) than iostreams (e.g., std::cout).</p>\n";
 
 $ENV{'PATH'} = ( join ( ':', @PREPENDPATHDIRS ) ) . ":" . $ENV{'PATH'};
 





More information about the llvm-commits mailing list