Another cyclic dag test case.
[oota-llvm.git] / test / CodeGen / X86 / inline-asm.ll
index de145091886be17a1cdc4b6fe56f9fdabfde4218..a38596df62f73fb0a7b3a2f3bf755e2ccc507b0d 100644 (file)
@@ -2,7 +2,13 @@
 
 int %test1() {
        ; Dest is AX, dest type = i32.
-        %tmp4 = call int asm sideeffect "FROB %0", "={ax}"()
+        %tmp4 = call int asm sideeffect "FROB $0", "={ax}"()
         ret int %tmp4
 }
 
+void %test2(int %V) {
+       ; input is AX, in type = i32.
+        call void asm sideeffect "FROB $0", "{ax}"(int %V)
+        ret void
+}
+