mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 16:21:41 +00:00
Testcase for PR1386.
llvm-svn: 45583
This commit is contained in:
parent
9763bb186b
commit
93c581f2a8
13
test/CFrontend/2008-01-04-WideBitfield.c
Normal file
13
test/CFrontend/2008-01-04-WideBitfield.c
Normal file
@ -0,0 +1,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;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user