xref: /aosp_15_r20/external/llvm/test/CodeGen/PowerPC/int-fp-conv-0.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1*9880d681SAndroid Build Coastguard Worker; RUN: llc < %s -march=ppc64 > %t
2*9880d681SAndroid Build Coastguard Worker; RUN: grep  __floattitf %t
3*9880d681SAndroid Build Coastguard Worker; RUN: grep  __fixunstfti %t
4*9880d681SAndroid Build Coastguard Worker
5*9880d681SAndroid Build Coastguard Workertarget datalayout = "E-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f128:64:128"
6*9880d681SAndroid Build Coastguard Workertarget triple = "powerpc64-apple-darwin9.2.0"
7*9880d681SAndroid Build Coastguard Worker
8*9880d681SAndroid Build Coastguard Workerdefine ppc_fp128 @foo(i128 %a) nounwind  {
9*9880d681SAndroid Build Coastguard Workerentry:
10*9880d681SAndroid Build Coastguard Worker	%tmp2829 = uitofp i128 %a to ppc_fp128		; <i64> [#uses=1]
11*9880d681SAndroid Build Coastguard Worker	ret ppc_fp128 %tmp2829
12*9880d681SAndroid Build Coastguard Worker}
13*9880d681SAndroid Build Coastguard Workerdefine i128 @boo(ppc_fp128 %a) nounwind  {
14*9880d681SAndroid Build Coastguard Workerentry:
15*9880d681SAndroid Build Coastguard Worker	%tmp2829 = fptoui ppc_fp128 %a to i128		; <i64> [#uses=1]
16*9880d681SAndroid Build Coastguard Worker	ret i128 %tmp2829
17*9880d681SAndroid Build Coastguard Worker}
18