llvm-6502/test/CFrontend/2003-10-02-UnionLValueError.c

12 lines
170 B
C
Raw Normal View History

// 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);
}