[Reland][Runtimes] Merge 'compile_commands.json' files from runtimes build (#116303)
[llvm-project.git] / llvm / test / CodeGen / X86 / change-unsafe-fp-math.ll
blobba09ba8b6402bead814442d764e0d0a5e0d33d10
1 ; Check that we can enable/disable UnsafeFPMath via function attributes.  An
2 ; attribute on one function should not magically apply to the next one.
4 ; RUN: llc < %s -mtriple=x86_64-unknown-unknown \
5 ; RUN:   | FileCheck %s --check-prefix=CHECK --check-prefix=SAFE
7 ; RUN: llc < %s -mtriple=x86_64-unknown-unknown -enable-unsafe-fp-math \
8 ; RUN:   | FileCheck %s --check-prefix=CHECK --check-prefix=UNSAFE
10 ; The div in these functions should be converted to a mul when unsafe-fp-math
11 ; is enabled.
13 ; CHECK-LABEL: unsafe_fp_math_default0:
14 define double @unsafe_fp_math_default0(double %x) {
15 ; SAFE:      divsd
16 ; UNSAFE:    mulsd
17   %div = fdiv double %x, 3.0
18   ret double %div
21 ; CHECK-LABEL: unsafe_fp_math_off:
22 define double @unsafe_fp_math_off(double %x) #0 {
23 ; SAFE:      divsd
24 ; UNSAFE:    divsd
25   %div = fdiv double %x, 3.0
26   ret double %div
29 ; CHECK-LABEL: unsafe_fp_math_default1:
30 define double @unsafe_fp_math_default1(double %x) {
31 ; With unsafe math enabled, can change this div to a mul.
32 ; SAFE:      divsd
33 ; UNSAFE:    mulsd
34   %div = fdiv double %x, 3.0
35   ret double %div
38 ; CHECK-LABEL: unsafe_fp_math_on:
39 define double @unsafe_fp_math_on(double %x) #1 {
40 ; SAFE:      mulsd
41 ; UNSAFE:    mulsd
42   %div = fdiv double %x, 3.0
43   ret double %div
46 ; CHECK-LABEL: unsafe_fp_math_default2:
47 define double @unsafe_fp_math_default2(double %x) {
48 ; With unsafe math enabled, can change this div to a mul.
49 ; SAFE:      divsd
50 ; UNSAFE:    mulsd
51   %div = fdiv double %x, 3.0
52   ret double %div
55 attributes #0 = { "unsafe-fp-math"="false" }
56 attributes #1 = { "unsafe-fp-math"="true" }