blob: 78be2a39defb12b7e34ba8bcf4e7c38f5c09802d [file] [log] [blame]
Chris Lattnerdec9cb52008-01-24 08:07:48 +00001; RUN: llvm-as < %s | llc -march=x86 | not grep fstp
2; RUN: llvm-as < %s | llc -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