New testcase, using "AX" as i32.
[oota-llvm.git] / test / CodeGen / X86 / inline-asm.ll
1 ; RUN: llvm-as < %s | llc -march=x86
2
3 int %test1() {
4         ; Dest is AX, dest type = i32.
5         %tmp4 = call int asm sideeffect "FROB %0", "={ax}"()
6         ret int %tmp4
7 }
8