Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
llvm
/
0b8f0a208e9849c7ea50173b98acb51efbe1f2c7
/
.
/
test
/
FrontendC
/
2003-10-02-UnionLValueError.c
blob: a4d17a4a0ba5e0061abd3943ddcda297c6658f5e [
file
] [
log
] [
blame
]
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
#include
<stdio.h>
union
U
{
int
i
[
8
];
char
s
[
80
];
};
void
format_message
(
char
*
buffer
,
union
U
*
u
)
{
sprintf
(
buffer
,
u
->
s
);
}