summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/inline-asm-fpstack2.ll
blob: 968561826b5c85d1e0365a13aea1e1076f5fb86c (plain)
1
2
3
4
5
6
7
8
9
10
; RUN: llvm-as < %s | llc -march=x86 > %t
; RUN: grep {fld	%%st(0)} %t
; PR4185

define void @test() {
return:
	call void asm sideeffect "fistpl $0", "{st}"(double 1.000000e+06)
	call void asm sideeffect "fistpl $0", "{st}"(double 1.000000e+06)
	ret void
}