view test/CodeGen/ARM/arguments3.ll @ 100:7d135dc70f03

LLVM 3.9
author Miyagi Mitsuki <e135756@ie.u-ryukyu.ac.jp>
date Tue, 26 Jan 2016 22:53:40 +0900
parents 95c75e76d11b
children
line wrap: on
line source

; RUN: llc < %s -mtriple=arm-linux-gnueabi
; RUN: llc < %s -mtriple=arm-apple-darwin

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

declare i64 @g(i128)