blob: b9166621db4a86f66aa16cc5d47f2fd7cf7a262b [file] [log] [blame]
Chris Lattner38d7f2b2005-10-19 00:52:21 +00001// RUN: %llvmgcc %s -S -o -
Chris Lattnerb8ec6952006-04-13 17:16:21 +00002
Chris Lattner38d7f2b2005-10-19 00:52:21 +00003int sub1(int i, char *pi) {
4 typedef int foo[i];
Matthijs Kooijmanc62a5aa2008-06-10 14:37:44 +00005 struct bar {foo f1; int f2:3; int f3:4;} *p = (struct bar *) pi;
Chris Lattner38d7f2b2005-10-19 00:52:21 +00006 xxx(p->f1);
7 return p->f3;
8}
9