blob: 2cd306581026c16e6e00f4511682bd45295be88d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
; RUN: llc -mtriple=hexagon -mcpu=hexagonv5 < %s | FileCheck %s
; Check that we generate double precision floating point subtract in V5.
; CHECK: call __hexagon_subdf3
define i32 @main() nounwind {
entry:
%a = alloca double, align 8
%b = alloca double, align 8
%c = alloca double, align 8
store volatile double 1.540000e+01, ptr %a, align 8
store volatile double 9.100000e+00, ptr %b, align 8
%0 = load volatile double, ptr %b, align 8
%1 = load volatile double, ptr %a, align 8
%sub = fsub double %0, %1
store double %sub, ptr %c, align 8
ret i32 0
}
|