mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-05 13:09:10 +00:00
fbfb1b286f
This is done to avoid odd test failures, like the one fixed in r171243. My previous regex was not good enough to find these. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171343 91177308-0d34-0410-b5e6-96231b3b80d8
46 lines
1.3 KiB
LLVM
46 lines
1.3 KiB
LLVM
; RUN: opt -gvn -S < %s | FileCheck %s
|
|
|
|
define double @test1(double %x, double %y) {
|
|
; CHECK: @test1(double %x, double %y)
|
|
; CHECK: %add1 = fadd double %x, %y
|
|
; CHECK-NOT: fpmath
|
|
; CHECK: %foo = fadd double %add1, %add1
|
|
%add1 = fadd double %x, %y, !fpmath !0
|
|
%add2 = fadd double %x, %y
|
|
%foo = fadd double %add1, %add2
|
|
ret double %foo
|
|
}
|
|
|
|
define double @test2(double %x, double %y) {
|
|
; CHECK: @test2(double %x, double %y)
|
|
; CHECK: %add1 = fadd double %x, %y, !fpmath !0
|
|
; CHECK: %foo = fadd double %add1, %add1
|
|
%add1 = fadd double %x, %y, !fpmath !0
|
|
%add2 = fadd double %x, %y, !fpmath !0
|
|
%foo = fadd double %add1, %add2
|
|
ret double %foo
|
|
}
|
|
|
|
define double @test3(double %x, double %y) {
|
|
; CHECK: @test3(double %x, double %y)
|
|
; CHECK: %add1 = fadd double %x, %y, !fpmath !1
|
|
; CHECK: %foo = fadd double %add1, %add1
|
|
%add1 = fadd double %x, %y, !fpmath !1
|
|
%add2 = fadd double %x, %y, !fpmath !0
|
|
%foo = fadd double %add1, %add2
|
|
ret double %foo
|
|
}
|
|
|
|
define double @test4(double %x, double %y) {
|
|
; CHECK: @test4(double %x, double %y)
|
|
; CHECK: %add1 = fadd double %x, %y, !fpmath !1
|
|
; CHECK: %foo = fadd double %add1, %add1
|
|
%add1 = fadd double %x, %y, !fpmath !0
|
|
%add2 = fadd double %x, %y, !fpmath !1
|
|
%foo = fadd double %add1, %add2
|
|
ret double %foo
|
|
}
|
|
|
|
!0 = metadata !{ float 5.0 }
|
|
!1 = metadata !{ float 2.5 }
|