blob: 375b0902a1cb2b8668a8636844ea7198e5cb73ef [file] [log] [blame]
Chris Lattner8d358172005-02-15 05:18:05 +00001// RUN: %llvmgxx %s -S -o - | not grep 'int 6'
2
3struct QVectorTypedData {
4 int size;
5 unsigned int sharable : 1;
6 unsigned short array[1];
7};
8
9void foo(QVectorTypedData *X) {
10 X->array[0] = 123;
11}