Add new testcase

llvm-svn: 28732
This commit is contained in:
Chris Lattner 2006-06-08 18:26:48 +00:00
parent 705948d742
commit 38b318d436
1 changed files with 7 additions and 1 deletions

View 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
}