Add missing index versions of instructions to the map.
[oota-llvm.git] / test / CFrontend / 2007-02-04-AddrLValue.c
1 // RUN: %llvmgcc %s -O3 -S -o - -emit-llvm
2 // PR1176
3
4 typedef struct
5 {
6   char *key;
7   char *value;
8 } T1;
9
10 typedef struct
11 {
12   long type;
13   char *value;
14 } T3;
15
16 T1 a[] =
17 {
18   {
19     "",
20     ((char *)&((T3) {1, (char *) 1}))
21   }
22 };
23