2012-04-08 20:08:12 +02:00
|
|
|
; RUN: llc < %s -march=x86-64 -enable-unsafe-fp-math | FileCheck %s
|
2012-04-07 22:04:00 +02:00
|
|
|
|
|
|
|
define double @exact(double %x) {
|
2012-04-08 20:08:12 +02:00
|
|
|
; Exact division by a constant converted to multiplication.
|
2012-04-07 22:04:00 +02:00
|
|
|
; CHECK: @exact
|
|
|
|
; CHECK: mulsd
|
|
|
|
%div = fdiv double %x, 2.0
|
|
|
|
ret double %div
|
|
|
|
}
|
|
|
|
|
|
|
|
define double @inexact(double %x) {
|
2012-04-08 20:08:12 +02:00
|
|
|
; Inexact division by a constant converted to multiplication.
|
2012-04-07 22:04:00 +02:00
|
|
|
; CHECK: @inexact
|
2012-04-08 20:08:12 +02:00
|
|
|
; CHECK: mulsd
|
2012-04-07 22:04:00 +02:00
|
|
|
%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
|
|
|
|
}
|