fast-MissedTree.ll 289 B

1234567891011
  1. ; RUN: opt < %s -reassociate -instcombine -S | FileCheck %s
  2. define float @test1(float %A, float %B) {
  3. ; CHECK-LABEL: test1
  4. ; CHECK: %Z = fadd fast float %A, %B
  5. ; CHECK: ret float %Z
  6. %W = fadd fast float %B, -5.0
  7. %Y = fadd fast float %A, 5.0
  8. %Z = fadd fast float %W, %Y
  9. ret float %Z
  10. }