Clean up some of LVI:
[llvm.git] / test / FrontendC / 2008-01-04-WideBitfield.c
bloba0045a4027628cad546c7abe4957cce680980b1e
1 // RUN: %llvmgcc -S -o - %s
2 // PR1386
3 #include <stdint.h>
5 struct X {
6 unsigned char pad : 4;
7 uint64_t a : 64;
8 } __attribute__((packed)) x;
10 uint64_t f(void)
12 return x.a;