bolt/deps/llvm-18.1.8/clang/test/CodeGen/2005-03-06-OffsetOfStructCrash.c

15 lines
206 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
// RUN: %clang_cc1 %s -emit-llvm -o -
struct Y {};
struct XXX {
struct Y F;
};
void test1(void) {
(int)&((struct XXX*)(((void *)0)))->F;
}
void test2(void) {
&((struct XXX*)(((void *)0)))->F;
}