Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
88b7cf00fcb582728c642da3927c59468efaf926
/
.
/
test
/
CodeGen
/
2002-07-30-SubregSetAssertion.c
blob: 39e97b3b4aecc8b78667f1d651df2a0486834638 [
file
] [
log
] [
blame
]
Eric Christopher
3883e66
2011-07-26 22:17:02 +0000
[
diff
] [
blame
]
1
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3
4
union
X
{
5
void
*
B
;
6
};
7
8
union
X foo
()
{
9
union
X A
;
10
A
.
B
=
(
void
*)
123
;
11
return
A
;
12
}