Add missing index versions of instructions to the map.
[oota-llvm.git] / test / CFrontend / 2003-10-02-UnionLValueError.c
1 // RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
3 union U{
4   int i[8];
5   char s[80];
6 };
7
8 void format_message(char *buffer, union U *u) {
9   sprintf(buffer, u->s);
10 }
11