2002-07-30-SubregSetAssertion.c 137 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 // 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; }