mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
732ffeba9e
llvm-svn: 54521
15 lines
199 B
C
15 lines
199 B
C
// RUN: %llvmgcc -S %s -o - | grep {i8 1}
|
|
// PR2603
|
|
|
|
struct A {
|
|
char num_fields;
|
|
};
|
|
|
|
struct B {
|
|
char a, b[1];
|
|
};
|
|
|
|
const struct A Foo = {
|
|
(char *)(&( (struct B *)(16) )->b[0]) - (char *)(16)
|
|
};
|