blob: 867e4d285e60793e498571171766bb5f608b7dde [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgcc %s -S -o -
2
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