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
4d49f964
Commit
4d49f964
authored
Nov 04, 2015
by
Nathan Sidwell
Committed by
Nathan Sidwell
Nov 04, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gfortran.dg/goacc/reduction-2.f95: Delete.
From-SVN: r229769
parent
f3552158
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
21 deletions
+4
-21
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/gfortran.dg/goacc/reduction-2.f95
+0
-21
No files found.
gcc/testsuite/ChangeLog
View file @
4d49f964
2015-11-04 Nathan Sidwell <nathan@codesourcery.com>
* gfortran.dg/goacc/reduction-2.f95: Delete.
2015-11-04 Tom de Vries <tom@codesourcery.com>
PR tree-optimization/67742
...
...
gcc/testsuite/gfortran.dg/goacc/reduction-2.f95
deleted
100644 → 0
View file @
f3552158
! { dg-do compile }
program
reduction
integer
,
parameter
::
n
=
40
,
c
=
10
integer
::
i
,
sum
call
redsub
(
sum
,
n
,
c
)
end
program
reduction
subroutine
redsub
(
sum
,
n
,
c
)
integer
::
sum
,
n
,
c
sum
=
0
!$acc parallel vector_length(n) copyin (n, c)
!$acc loop reduction(+:sum)
do
i
=
1
,
n
sum
=
sum
+
c
end
do
!$acc end parallel
end
subroutine
redsub
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