xref: /llvm-project/llvm/test/CodeGen/ARM/arguments4.ll (revision c8054d90fbe7ff386577c27dd51d597924036cde)
1*c8054d90SDan Gohman; RUN: llc < %s -mtriple=arm-linux-gnueabi
2*c8054d90SDan Gohman; RUN: llc < %s -mtriple=arm-apple-darwin
3a4c2290eSBob Wilson
4a4c2290eSBob Wilsondefine float @f(i32 %a, i128 %b) {
5a4c2290eSBob Wilson        %tmp = call float @g(i128 %b)
6a4c2290eSBob Wilson        ret float %tmp
7a4c2290eSBob Wilson}
8a4c2290eSBob Wilson
9a4c2290eSBob Wilsondeclare float @g(i128)
10