xref: /aosp_15_r20/external/llvm/test/CodeGen/X86/fastcc-2.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1*9880d681SAndroid Build Coastguard Worker; RUN: llc < %s -mtriple=i686-apple-darwin -mattr=+sse2 | FileCheck %s
2*9880d681SAndroid Build Coastguard Worker; CHECK: movsd
3*9880d681SAndroid Build Coastguard Worker; CHECK-NOT: mov
4*9880d681SAndroid Build Coastguard Worker
5*9880d681SAndroid Build Coastguard Workerdefine i32 @foo() nounwind {
6*9880d681SAndroid Build Coastguard Workerentry:
7*9880d681SAndroid Build Coastguard Worker	tail call fastcc void @bar( double 1.000000e+00 ) nounwind
8*9880d681SAndroid Build Coastguard Worker	ret i32 0
9*9880d681SAndroid Build Coastguard Worker}
10*9880d681SAndroid Build Coastguard Worker
11*9880d681SAndroid Build Coastguard Workerdeclare fastcc void @bar(double)
12