blob: 9efa1108eda158c1b31feb2105a1690610e52363 [file] [log] [blame]
Chris Lattner07c375d2005-10-19 00:52:21 +00001// RUN: %llvmgcc %s -S -o -
2// XFAIL: *
3int sub1(int i, char *pi) {
4 typedef int foo[i];
5 struct bar {foo f1; int f2:3; int f3:4} *p = (struct bar *) pi;
6 xxx(p->f1);
7 return p->f3;
8}
9