more fixes to C code.

llvm-svn: 37339
This commit is contained in:
Chris Lattner 2007-05-29 15:43:56 +00:00
parent 2d8b9a8834
commit a446f1b46b
1 changed files with 3 additions and 3 deletions

View File

@ -2792,16 +2792,16 @@ compiled to LLVM:</p>
<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 &amp;s[1].Z.B[5][13];
}
</pre>