mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
e5165490b7
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86494 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
388 B
LLVM
12 lines
388 B
LLVM
; 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
|
|
}
|
|
|