[llvm-commits] CVS: llvm/docs/GettingStarted.html HowToSubmitABug.html

Chris Lattner lattner at cs.uiuc.edu
Fri Feb 13 19:08:02 PST 2004


Changes in directory llvm/docs:

GettingStarted.html updated: 1.49 -> 1.50
HowToSubmitABug.html updated: 1.11 -> 1.12

---
Log message:

Updates for the C backend's movement



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

Index: llvm/docs/GettingStarted.html
diff -u llvm/docs/GettingStarted.html:1.49 llvm/docs/GettingStarted.html:1.50
--- llvm/docs/GettingStarted.html:1.49	Sun Feb  8 01:49:04 2004
+++ llvm/docs/GettingStarted.html	Fri Feb 13 19:07:17 2004
@@ -911,8 +911,7 @@
   LLVM assembly to LLVM bytecode.<p>
 
   <dt><tt><b>llvm-dis</b></tt><dd>The disassembler transforms the LLVM
-  bytecode to human readable LLVM assembly.  Additionally, it can convert
-  LLVM bytecode to C, which is enabled with the <tt>-c</tt> option.<p>
+  bytecode to human readable LLVM assembly.<p>
 
   <dt><tt><b>llvm-link</b></tt><dd> <tt>llvm-link</tt>, not surprisingly,
   links multiple LLVM modules into a single program.<p>
@@ -926,8 +925,9 @@
   functionality was compiled in), and will execute the code <i>much</i>
   faster than the interpreter.<p>
 
-  <dt><tt><b>llc</b></tt><dd> <tt>llc</tt> is the LLVM backend compiler,
-  which translates LLVM bytecode to a SPARC or x86 assembly file.<p>
+  <dt><tt><b>llc</b></tt><dd> <tt>llc</tt> is the LLVM backend compiler, which
+  translates LLVM bytecode to a SPARC or x86 assembly file, or to C code (with
+  the -march=c option).<p>
 
   <dt><tt><b>llvmgcc</b></tt><dd> <tt>llvmgcc</tt> is a GCC-based C frontend
   that has been retargeted to emit LLVM code as the machine code output.  It
@@ -1147,7 +1147,7 @@
 
   <a href="mailto:sabre at nondot.org">Chris Lattner</a><br>
   <a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a><br>
-  Last modified: $Date: 2004/02/08 07:49:04 $
+  Last modified: $Date: 2004/02/14 01:07:17 $
 </address>
 
 </body>


Index: llvm/docs/HowToSubmitABug.html
diff -u llvm/docs/HowToSubmitABug.html:1.11 llvm/docs/HowToSubmitABug.html:1.12
--- llvm/docs/HowToSubmitABug.html:1.11	Thu Jan 15 13:03:47 2004
+++ llvm/docs/HowToSubmitABug.html	Fri Feb 13 19:07:17 2004
@@ -281,7 +281,7 @@
   <li>Regenerate the shared object from the safe bytecode file:<br>
 
 <pre>
-  <b>llvm-dis</b> -c safe.bc -o safe.c<br>
+  <b>llc</b> -march=c safe.bc -o safe.c<br>
   <b>gcc</b> -shared safe.c -o safe.so
 </pre></li>
 
@@ -315,7 +315,7 @@
   <a href="mailto:sabre at nondot.org">Chris Lattner</a><br>
   <a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a>
   <br>
-  Last modified: $Date: 2004/01/15 19:03:47 $
+  Last modified: $Date: 2004/02/14 01:07:17 $
 </address>
 
 </body>





More information about the llvm-commits mailing list