1 ; RUN: opt -gvn -S < %s | FileCheck %s
3 define double @test1(double %x, double %y) {
4 ; CHECK: @test1(double %x, double %y)
5 ; CHECK: %add1 = fadd double %x, %y
7 ; CHECK: %foo = fadd double %add1, %add1
8 %add1 = fadd double %x, %y, !fpmath !0
9 %add2 = fadd double %x, %y
10 %foo = fadd double %add1, %add2
14 define double @test2(double %x, double %y) {
15 ; CHECK: @test2(double %x, double %y)
16 ; CHECK: %add1 = fadd double %x, %y, !fpmath !0
17 ; CHECK: %foo = fadd double %add1, %add1
18 %add1 = fadd double %x, %y, !fpmath !0
19 %add2 = fadd double %x, %y, !fpmath !0
20 %foo = fadd double %add1, %add2
24 define double @test3(double %x, double %y) {
25 ; CHECK: @test3(double %x, double %y)
26 ; CHECK: %add1 = fadd double %x, %y, !fpmath !1
27 ; CHECK: %foo = fadd double %add1, %add1
28 %add1 = fadd double %x, %y, !fpmath !1
29 %add2 = fadd double %x, %y, !fpmath !0
30 %foo = fadd double %add1, %add2
34 define double @test4(double %x, double %y) {
35 ; CHECK: @test4(double %x, double %y)
36 ; CHECK: %add1 = fadd double %x, %y, !fpmath !1
37 ; CHECK: %foo = fadd double %add1, %add1
38 %add1 = fadd double %x, %y, !fpmath !0
39 %add2 = fadd double %x, %y, !fpmath !1
40 %foo = fadd double %add1, %add2
44 define double @test5(double %x, double %y) {
45 ; CHECK: @test5(double %x, double %y)
46 ; CHECK: %neg1 = fneg double %x, !fpmath !1
47 ; CHECK: %foo = fadd double %neg1, %neg1
48 %neg1 = fneg double %x, !fpmath !0
49 %neg2 = fneg double %x, !fpmath !1
50 %foo = fadd double %neg1, %neg2