mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
eb3cd5e822
llvm-svn: 51695
14 lines
179 B
C
14 lines
179 B
C
// 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;
|
|
}
|