summaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/arguments-nosplit-double.ll
blob: 770e41df2c2463e9a1e24850d1efc0c0deb01df5 (plain)
1
2
3
4
5
6
7
8
9
; RUN: llc < %s -mtriple=arm-linux-gnueabi | not grep r3
; PR4059

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

declare i32 @g(double)