blob: a18c621d143749368c3df3f7d89c6546ad690f0e [file] [log] [blame]
Bob Wilson1f595bb2009-04-17 19:07:39 +00001; RUN: llvm-as < %s | llc -mtriple=arm-linux-gnueabi
2; RUN: llvm-as < %s | llc -mtriple=arm-apple-darwin
3
4define i128 @f(i32 %a, i128 %b) {
5 %tmp = call i128 @g(i128 %b)
6 ret i128 %tmp
7}
8
9declare i128 @g(i128)