summaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/arguments5.ll
blob: 388a8ebee670dddddd941832e8816e6fd105ab2d (plain)
1
2
3
4
5
6
7
8
9
; RUN: llc < %s -mtriple=arm-linux-gnueabi
; RUN: llc < %s -mtriple=arm-apple-darwin

define double @f(i32 %a, i128 %b) {
        %tmp = call double @g(i128 %b)
        ret double %tmp
}

declare double @g(i128)