1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 14:32:51 +01:00
llvm-mirror/test/Regression/CFrontend/2003-10-02-UnionLValueError.c
Chris Lattner 0068d0ce6e Checkin new file, reduced by Brian
llvm-svn: 8820
2003-10-02 18:26:11 +00:00

10 lines
115 B
C

union U{
int i[8];
char s[80];
};
void format_message(char *buffer, union U *u) {
sprintf(buffer, u->s);
}