Add missing index versions of instructions to the map.
[oota-llvm.git] / test / CFrontend / 2007-04-11-InlineAsmStruct.c
1 // RUN: %llvmgcc %s -S -emit-llvm -o - | llvm-as | llc
2
3 struct V { short X, Y; };
4 int bar() {
5   struct V bar;
6   __asm__ volatile("foo %0\n" : "=r"(bar));
7   return bar.X;
8 }
9