projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aac388b
)
more fixes to C code.
author
Chris Lattner
<sabre@nondot.org>
Tue, 29 May 2007 15:43:56 +0000
(15:43 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Tue, 29 May 2007 15:43:56 +0000
(15:43 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37339
91177308
-0d34-0410-b5e6-
96231b3b80d8
docs/LangRef.html
patch
|
blob
|
history
diff --git
a/docs/LangRef.html
b/docs/LangRef.html
index cf5ee06cf4f0dc8b9c0fea983bbf69f29511c36a..e9b3c5601f16cc6a67a72280bdc7b8800b018f33 100644
(file)
--- a/
docs/LangRef.html
+++ b/
docs/LangRef.html
@@
-2792,16
+2792,16
@@
compiled to LLVM:</p>
<pre>
struct RT {
char A;
- i
32
B[10][20];
+ i
nt
B[10][20];
char C;
};
struct ST {
- i
32
X;
+ i
nt
X;
double Y;
struct RT Z;
};
-i
32
*foo(struct ST *s) {
+i
nt
*foo(struct ST *s) {
return &s[1].Z.B[5][13];
}
</pre>