From a446f1b46bc50b2421a8f6e7df63f4e96b133b3e Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 29 May 2007 15:43:56 +0000 Subject: more fixes to C code. llvm-svn: 37339 --- llvm/docs/LangRef.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'llvm/docs') diff --git a/llvm/docs/LangRef.html b/llvm/docs/LangRef.html index cf5ee06cf4f..e9b3c5601f1 100644 --- a/llvm/docs/LangRef.html +++ b/llvm/docs/LangRef.html @@ -2792,16 +2792,16 @@ compiled to LLVM:

 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];
 }
 
-- cgit v1.2.3