Sign in
llvm
/
clang
/
260967ebf6d2195623045b81fdbfaf59d9499776
/
.
/
test
/
CodeGen
/
2002-07-30-SubregSetAssertion.c
blob: 39e97b3b4aecc8b78667f1d651df2a0486834638 [
file
]
// 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
;
}