forked from OSchip/llvm-project
12 lines
170 B
C
12 lines
170 B
C
|
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
|
||
|
|
||
|
union U{
|
||
|
int i[8];
|
||
|
char s[80];
|
||
|
};
|
||
|
|
||
|
void format_message(char *buffer, union U *u) {
|
||
|
sprintf(buffer, u->s);
|
||
|
}
|
||
|
|