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