freebsd_amp_hwpstate/test/FrontendC/2008-01-04-WideBitfield.c

14 lines
179 B
C
Raw Normal View History

2009-06-02 17:52:33 +00:00
// RUN: %llvmgcc -S -o - %s
// PR1386
#include <stdint.h>
struct X {
unsigned char pad : 4;
uint64_t a : 64;
} __attribute__((packed)) x;
uint64_t f(void)
{
return x.a;
}