Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
llvm
/
d901b6640e0f1d1757a2db9fb57a140ad828ea75
/
.
/
test
/
FrontendC
/
2002-07-30-SubregSetAssertion.c
blob: 6d4f9f62058166f57c5a447bc95c1ef14bf6c4a6 [
file
] [
log
] [
blame
]
Dan Gohman
f17a25c
2007-07-18 16:29:46 +0000
[
diff
] [
blame
]
1
// RUN: %llvmgcc -S %s -o - | llvm-as -f -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
}