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
f270edbc
Commit
f270edbc
authored
Nov 25, 1998
by
Dave Love
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(main): Avoid testing [f]statb
element, which fails on some systems. From-SVN: r23853
parent
afaa51ba
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
gcc/testsuite/g77.f-torture/execute/u77-test.f
+6
-3
No files found.
gcc/testsuite/g77.f-torture/execute/u77-test.f
View file @
f270edbc
...
...
@@ -233,9 +233,12 @@ C the better to test with, my dear! (-- burley)
end do
i = lstat ('foo', fstatb)
do i=1,13
if (fstatb (i) .ne. statb (i)) then
write (6,*) '*** LSTAT and STAT don''t agree on '// '
+ array element ', i, ' value ', fstatb (i), statb (i)
c For some reason that I haven't investigated, some people see
c failures with the 7th element which doesn't seem to indicate a u77
c bug.
if (fstatb (i) .ne. statb (i) .and. i .ne. 7) then
write (6,*) '*** LSTAT and STAT don''t agree on '//
+ 'array element ', i, ' value ', fstatb (i), statb (i)
call abort
end if
end do
...
...
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