xref: /aosp_15_r20/external/llvm/test/CodeGen/ARM/arguments5.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1*9880d681SAndroid Build Coastguard Worker; RUN: llc < %s -mtriple=arm-linux-gnueabi
2*9880d681SAndroid Build Coastguard Worker; RUN: llc < %s -mtriple=arm-apple-darwin
3*9880d681SAndroid Build Coastguard Worker
4*9880d681SAndroid Build Coastguard Workerdefine double @f(i32 %a, i128 %b) {
5*9880d681SAndroid Build Coastguard Worker        %tmp = call double @g(i128 %b)
6*9880d681SAndroid Build Coastguard Worker        ret double %tmp
7*9880d681SAndroid Build Coastguard Worker}
8*9880d681SAndroid Build Coastguard Worker
9*9880d681SAndroid Build Coastguard Workerdeclare double @g(i128)
10