mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
f2cb55e405
replacement to make it at least as generic as the instruction being replaced. This includes: * dropping nsw/nuw flags * getting the least restrictive tbaa and fpmath metadata * merging ranges Fixes PR12979. llvm-svn: 157958
46 lines
1.3 KiB
LLVM
46 lines
1.3 KiB
LLVM
; RUN: opt %s -gvn -S -o - | 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 }
|