fix test to not get a moduleid that matches 'br'
[llvm/avr.git] / test / FrontendC / 2003-10-02-UnionLValueError.c
bloba4d17a4a0ba5e0061abd3943ddcda297c6658f5e
1 // RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
3 #include <stdio.h>
5 union U{
6 int i[8];
7 char s[80];
8 };
10 void format_message(char *buffer, union U *u) {
11 sprintf(buffer, u->s);