summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/inline-asm.ll
blob: de145091886be17a1cdc4b6fe56f9fdabfde4218 (plain)
1
2
3
4
5
6
7
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
}