aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/Hexagon/dadd.ll
blob: e755e33eae1c9382ee1f3584401b733408daa27f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
; RUN: llc -mtriple=hexagon -mcpu=hexagonv5 < %s | FileCheck %s
; Check that we generate double precision floating point add in V5.

; CHECK: call __hexagon_adddf3


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 %a, align 8
  %1 = load volatile double, ptr %b, align 8
  %add = fadd double %0, %1
  store double %add, ptr %c, align 8
  ret i32 0
}