Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
3c16fdaf
Commit
3c16fdaf
authored
May 27, 2009
by
Janne Blomqvist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change scan-tree-dump-times patterns due to frontend changes
From-SVN: r147919
parent
ed630879
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
4 deletions
+11
-4
gcc/testsuite/ChangeLog
+7
-0
gcc/testsuite/gfortran.dg/elemental_dependency_1.f90
+3
-3
gcc/testsuite/gfortran.dg/vector_subscript_4.f90
+1
-1
No files found.
gcc/testsuite/ChangeLog
View file @
3c16fdaf
2009-05-27 Janne Blomqvist <jb@gcc.gnu.org>
PR fortran/39178
* gfortran.dg/elemental_dependency_1.f90: Fix scan-tree-dump-times
patterns to reflect frontend changes.
* gfortran.dg/vector_subscript_4.f90: Likewise.
2009-05-28 Olivier Hainque <hainque@adacore.com>
Eric Botcazou <botcazou@adacore.com>
...
...
gcc/testsuite/gfortran.dg/elemental_dependency_1.f90
View file @
3c16fdaf
...
...
@@ -40,14 +40,14 @@ PROGRAM main
b
=
a
CALL
double
((
a
(
1
:
sz
-1
)),
a
(
2
:
sz
))
! paren expression, temporary created
! { dg-final { scan-tree-dump-times "A\.1
7
\\\[4\\\]" 1 "original" } }
! { dg-final { scan-tree-dump-times "A\.1
6
\\\[4\\\]" 1 "original" } }
IF
(
ANY
(
a
/
=
(/
b
(
1
),
(
2
*
b
(
i
),
i
=
1
,
sz
-1
)
/)))
CALL
abort
b
=
a
CALL
double
(
a
(
1
:
sz
-1
)
+1
,
a
(
2
:
sz
))
! op expression, temporary created
! { dg-final { scan-tree-dump-times "A\.2
6
\\\[4\\\]" 1 "original" } }
! { dg-final { scan-tree-dump-times "A\.2
5
\\\[4\\\]" 1 "original" } }
IF
(
ANY
(
a
/
=
(/
b
(
1
),
(
2
*
b
(
i
)
+2
,
i
=
1
,
sz
-1
)
/)))
CALL
abort
...
...
@@ -59,7 +59,7 @@ PROGRAM main
b
=
a
CALL
double
(
self
(
a
(
1
:
sz
-1
)),
a
(
2
:
sz
))
! function expr, temporary created
! { dg-final { scan-tree-dump-times "A\.3
8
\\\[4\\\]" 1 "original" } }
! { dg-final { scan-tree-dump-times "A\.3
7
\\\[4\\\]" 1 "original" } }
IF
(
ANY
(
a
/
=
(/
b
(
1
),
(
2
*
b
(
i
),
i
=
1
,
sz
-1
)
/)))
CALL
abort
...
...
gcc/testsuite/gfortran.dg/vector_subscript_4.f90
View file @
3c16fdaf
...
...
@@ -9,5 +9,5 @@
integer
::
i
(
-1
:
1
)
=
1
,
j
(
3
)
=
1
,
k
(
3
)
k
=
j
((/
1
,
1
,
1
/)
+
i
)
end
! { dg-final { scan-tree-dump-times "A\.
3
\\\[3\\\]" 1 "original" } }
! { dg-final { scan-tree-dump-times "A\.
2
\\\[3\\\]" 1 "original" } }
! { dg-final { cleanup-tree-dump "original" } }
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment