Mercurial > hg > CbC > CbC_gcc
annotate gcc/testsuite/gfortran.dg/pr53787.f90 @ 158:494b0b89df80 default tip
...
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 25 May 2020 18:13:55 +0900 |
parents | 04ced10e8804 |
children |
rev | line source |
---|---|
111 | 1 ! { dg-do compile } |
2 ! { dg-options "-O3 -fdump-ipa-cp-details -fno-inline -fwhole-program" } | |
3 | |
4 real x(10) | |
5 n = 10 | |
6 call init(x,n) | |
7 print *, x | |
8 end program | |
9 | |
10 subroutine init(x, n) | |
11 real x(10) | |
12 do i=1,n | |
13 x(i) = i*i + 1 | |
14 enddo | |
15 | |
16 return | |
17 end subroutine init | |
18 | |
19 ! { dg-final { scan-ipa-dump "Creating a specialized node of init" "cp" } } | |
20 ! { dg-final { scan-ipa-dump-times "Aggregate replacements" 2 "cp" } } |