summaryrefslogtreecommitdiff
path: root/test/CodeGen/ARM/fnmul.ll
blob: 6d7bc05ffa94e827999f31b88f1b312e9daeafe3 (plain)
1
2
3
4
5
6
7
8
9
10
11
; RUN: llc < %s -march=arm -mattr=+v6,+vfp2 | grep vnmul.f64
; RUN: llc < %s -march=arm -mattr=+v6,+vfp2 -enable-sign-dependent-rounding-fp-math | grep vmul.f64


define double @t1(double %a, double %b) {
entry:
        %tmp2 = fsub double -0.000000e+00, %a            ; <double> [#uses=1]
        %tmp4 = fmul double %tmp2, %b            ; <double> [#uses=1]
        ret double %tmp4
}