brintos

brintos / llvm-project-archived public Read only

0
0
Text · 574 B · 1ceb3a4 Raw
19 lines · plain
1; RUN: llc -mtriple=hexagon -mcpu=hexagonv5 < %s | FileCheck %s2; Check that we generate double precision floating point multiply in V5.3 4; CHECK: call __hexagon_muldf35 6define i32 @main() nounwind {7entry:8  %a = alloca double, align 89  %b = alloca double, align 810  %c = alloca double, align 811  store volatile double 1.540000e+01, ptr %a, align 812  store volatile double 9.100000e+00, ptr %b, align 813  %0 = load volatile double, ptr %b, align 814  %1 = load volatile double, ptr %a, align 815  %mul = fmul double %0, %116  store double %mul, ptr %c, align 817  ret i32 018}19