Add missing index versions of instructions to the map.
[oota-llvm.git] / test / CFrontend / 2007-02-04-EmptyStruct.c
1 // RUN: %llvmgcc %s -O3 -S -o - -emit-llvm
2 // PR1175
3
4 struct empty { };
5
6 void foo(struct empty *p) {
7    p++;
8 }
9