blob: a0045a4027628cad546c7abe4957cce680980b1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// 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;
}
|