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

Chris Lattner lattner at cs.uiuc.edu
Wed May 18 15:49:09 PDT 2005



Changes in directory llvm-www/demo:

index.cgi updated: 1.53 -> 1.54
---
Log message:

add some hints


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

 index.cgi |   10 +++++++---
 1 files changed, 7 insertions(+), 3 deletions(-)


Index: llvm-www/demo/index.cgi
diff -u llvm-www/demo/index.cgi:1.53 llvm-www/demo/index.cgi:1.54
--- llvm-www/demo/index.cgi:1.53	Mon May  9 17:55:46 2005
+++ llvm-www/demo/index.cgi	Wed May 18 17:48:52 2005
@@ -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: 2005/05/09 22:55:46 $
+# Last modified $Date: 2005/05/18 22:48:52 $
 #
 
 use strict;
@@ -235,8 +235,12 @@
   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";
+list</a>.</p>\n<p>Hints:</p><ul><li>The generated LLVM code will be easier to read if
+you use stdio (e.g., printf) than iostreams (e.g., std::cout).</li>
+<li>You must define or use non-inline methods for their bodies to be
+generated.  For example, instead of "<tt>class foo { void bar() {}};</tt>",
+try writing "<tt>class foo { void bar(); }; void foo::bar() {}</tt>".</li>
+</ul>\n";
 
 $ENV{'PATH'} = ( join ( ':', @PREPENDPATHDIRS ) ) . ":" . $ENV{'PATH'};
 






More information about the llvm-commits mailing list