android_mt6572_jiabo/external/clang/test/CodeGen/2002-07-30-SubregSetAssertion.c
2025-09-05 16:56:03 +08:00

12 lines
137 B
C

// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
union X {
void *B;
};
union X foo() {
union X A;
A.B = (void*)123;
return A;
}