Add missing index versions of instructions to the map.
[oota-llvm.git] / test / CFrontend / 2004-06-08-OpaqueStructArg.c
1 // RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
3    struct fu;
4    void foo(struct fu);
5    void bar() {
6       foo;
7    }