1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00
llvm-mirror/test/FrontendC/2008-08-07-GEPIntToPtr.c

15 lines
199 B
C
Raw Normal View History

2008-08-08 09:00:26 +02:00
// 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)
};