mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
28b9aa998e
when -ffast-math, i.e. don't just always do it if the reciprocal can be formed exactly. There is already an IR level transform that does that, and it does it more carefully. llvm-svn: 154296
26 lines
603 B
LLVM
26 lines
603 B
LLVM
; RUN: llc < %s -march=x86-64 -enable-unsafe-fp-math | FileCheck %s
|
|
|
|
define double @exact(double %x) {
|
|
; Exact division by a constant converted to multiplication.
|
|
; CHECK: @exact
|
|
; CHECK: mulsd
|
|
%div = fdiv double %x, 2.0
|
|
ret double %div
|
|
}
|
|
|
|
define double @inexact(double %x) {
|
|
; Inexact division by a constant converted to multiplication.
|
|
; CHECK: @inexact
|
|
; CHECK: mulsd
|
|
%div = fdiv double %x, 0x41DFFFFFFFC00000
|
|
ret double %div
|
|
}
|
|
|
|
define double @funky(double %x) {
|
|
; No conversion to multiplication if too funky.
|
|
; CHECK: @funky
|
|
; CHECK: divsd
|
|
%div = fdiv double %x, 0.0
|
|
ret double %div
|
|
}
|