[RISCV] Add shrinkwrap test cases showing gaps in current impl
[llvm-project.git] / llvm / test / CodeGen / X86 / fastcc-2.ll
blobe11cdd19723aac1ec92d79e1ad1908d4d859a2e1
1 ; RUN: llc < %s -mtriple=i686-apple-darwin -mattr=+sse2 | FileCheck %s
2 ; CHECK: movsd
3 ; CHECK-NOT: mov
5 define i32 @foo() nounwind {
6 entry:
7         tail call fastcc void @bar( double 1.000000e+00 ) nounwind
8         ret i32 0
11 declare fastcc void @bar(double)