Revert r354244 "[DAGCombiner] Eliminate dead stores to stack."
[llvm-complete.git] / test / CodeGen / Hexagon / dadd.ll
blob3068f499d12dffd0312c4a149f59248feff40b65
1 ; RUN: llc -march=hexagon -mcpu=hexagonv5  < %s | FileCheck %s
2 ; Check that we generate double precision floating point add in V5.
4 ; CHECK: call __hexagon_adddf3
7 define i32 @main() nounwind {
8 entry:
9   %a = alloca double, align 8
10   %b = alloca double, align 8
11   %c = alloca double, align 8
12   store volatile double 1.540000e+01, double* %a, align 8
13   store volatile double 9.100000e+00, double* %b, align 8
14   %0 = load volatile double, double* %a, align 8
15   %1 = load volatile double, double* %b, align 8
16   %add = fadd double %0, %1
17   store double %add, double* %c, align 8
18   ret i32 0