Teach mergefunc that intptr_t is the same width as a pointer. We still can't
[llvm.git] / test / FrontendC / 2007-04-05-PackedBitFields.c
blobf9de35639b0d539a7498ef9ec22e5522fca36a5e
1 // RUN: %llvmgcc %s -S -o -
3 # define pck __attribute__((packed))
6 struct pck E {
7 unsigned long long l,
8 i : 12,
9 j : 23,
10 k : 29; };
12 struct E e1;
14 void foo() {
15 e1.k = 5;