xref: /aosp_15_r20/external/llvm/test/CodeGen/X86/fp-stack-direct-ret.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1; RUN: llc < %s -march=x86 | not grep fstp
2; RUN: llc < %s -march=x86 -mcpu=yonah | not grep movsd
3
4declare double @foo()
5
6define double @bar() {
7entry:
8	%tmp5 = tail call double @foo()
9	ret double %tmp5
10}
11
12