[llvm-commits] CVS: llvm/docs/LangRef.html

Chris Lattner sabre at nondot.org
Tue May 29 08:44:23 PDT 2007



Changes in directory llvm/docs:

LangRef.html updated: 1.248 -> 1.249
---
Log message:

more fixes to C code.


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

 LangRef.html |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)


Index: llvm/docs/LangRef.html
diff -u llvm/docs/LangRef.html:1.248 llvm/docs/LangRef.html:1.249
--- llvm/docs/LangRef.html:1.248	Tue May 29 04:42:13 2007
+++ llvm/docs/LangRef.html	Tue May 29 10:43:56 2007
@@ -2792,16 +2792,16 @@
 <pre>
 struct RT {
   char A;
-  i32 B[10][20];
+  int B[10][20];
   char C;
 };
 struct ST {
-  i32 X;
+  int X;
   double Y;
   struct RT Z;
 };
 
-i32 *foo(struct ST *s) {
+int *foo(struct ST *s) {
   return &s[1].Z.B[5][13];
 }
 </pre>
@@ -4827,7 +4827,7 @@
 
   <a href="mailto:sabre at nondot.org">Chris Lattner</a><br>
   <a href="http://llvm.org">The LLVM Compiler Infrastructure</a><br>
-  Last modified: $Date: 2007/05/29 09:42:13 $
+  Last modified: $Date: 2007/05/29 15:43:56 $
 </address>
 </body>
 </html>






More information about the llvm-commits mailing list