New testcase, using "AX" as i32.

llvm-svn: 28730
This commit is contained in:
Chris Lattner 2006-06-08 18:20:13 +00:00
parent 36bc2b00eb
commit 1b66dd690c
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
; RUN: llvm-as < %s | llc -march=x86
int %test1() {
; Dest is AX, dest type = i32.
%tmp4 = call int asm sideeffect "FROB %0", "={ax}"()
ret int %tmp4
}