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
2e647206
Commit
2e647206
authored
Apr 19, 1999
by
Craig Burley
Committed by
Craig Burley
Apr 19, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
new tests, derived from bug-reports from Toon and Tim
From-SVN: r26552
parent
5b916f26
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
33 additions
and
0 deletions
+33
-0
gcc/testsuite/ChangeLog
+5
-0
gcc/testsuite/g77.f-torture/compile/19990419-0.f
+7
-0
gcc/testsuite/g77.f-torture/execute/19990419-1.f
+21
-0
No files found.
gcc/testsuite/ChangeLog
View file @
2e647206
1999-04-20 Craig Burley <craig@jcb-sc.com>
* g77.f-torture/compile/19990419-0.f: New test.
* g77.f-torture/execute/19990419-1.f: New test.
Sat Apr 17 16:56:48 1999 Richard Henderson <rth@cygnus.com>
Sat Apr 17 16:56:48 1999 Richard Henderson <rth@cygnus.com>
* gcc.dg/uninit-9.c (func): Use __builtin_alloca instead of alloca
* gcc.dg/uninit-9.c (func): Use __builtin_alloca instead of alloca
...
...
gcc/testsuite/g77.f-torture/compile/19990419-0.f
0 → 100644
View file @
2e647206
* Test case Toon submitted, cut down to expose the one bug.
* Belongs in compile/.
SUBROUTINE INIERS1
IMPLICIT LOGICAL(L)
COMMON/COMIOD/ NHIERS1, LERS1
inquire(nhiers1, exist=lers1)
END
gcc/testsuite/g77.f-torture/execute/19990419-1.f
0 → 100644
View file @
2e647206
* Test DO WHILE, to make sure it fully reevaluates its expression.
* Belongs in execute/.
common /x/ ival
j = 0
do while (i() .eq. 1)
j = j + 1
if (j .gt. 5) call abort
end do
if (j .ne. 4) call abort
if (ival .ne. 5) call abort
end
function i()
common /x/ ival
ival = ival + 1
i = 10
if (ival .lt. 5) i = 1
end
block data
common /x/ ival
data ival/0/
end
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