From cabc8469f23e0d2e616e61ecf00d90bcb74d7633 Mon Sep 17 00:00:00 2001
From: Chris Lattner
Date: Tue, 29 May 2007 15:43:56 +0000
Subject: [PATCH] more fixes to C code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37339 91177308-0d34-0410-b5e6-96231b3b80d8
---
docs/LangRef.html | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/docs/LangRef.html b/docs/LangRef.html
index cf5ee06cf4f..e9b3c5601f1 100644
--- a/docs/LangRef.html
+++ b/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];
}