summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/fp-stack-direct-ret.ll
blob: 5a28bb50a34353947819b32d54b85f0bec7763cb (plain)
1
2
3
4
5
6
7
8
9
10
11
; RUN: llc < %s -march=x86 | not grep fstp
; RUN: llc < %s -march=x86 -mcpu=yonah | not grep movsd

declare double @foo()

define double @bar() {
entry:
	%tmp5 = tail call double @foo()
	ret double %tmp5
}