aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/reassoc_8.f
blob: 3a169010cdde1df55eb79a1d2b382cfcac066d52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
! { dg-do compile }
! { dg-options "-O3 -ffast-math -ffp-contract=off -fdump-tree-optimized" }

      SUBROUTINE S55199(P,Dvdph)
      implicit none
      real(8) :: c1,c2,c3,P,Dvdph
      c1=0.1d0
      c2=0.2d0
      c3=0.3d0
      Dvdph = c1 + 2.*P**2*c2 + 3.*P**3*c3
      END

! There should be three multiplies following un-distribution
! and power expansion.

! { dg-final { scan-tree-dump-times " \\\* " 3 "optimized" } }