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
8a210b0f
Commit
8a210b0f
authored
Aug 31, 2004
by
Paul Brook
Committed by
Paul Brook
Aug 31, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* io/unit.c (get_unit): Remove superfluous if.
From-SVN: r86838
parent
11bb4b27
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
libgfortran/ChangeLog
+4
-0
libgfortran/io/unit.c
+1
-3
No files found.
libgfortran/ChangeLog
View file @
8a210b0f
2004-08-31 Paul Brook <paul@codesourcery.com>
2004-08-31 Paul Brook <paul@codesourcery.com>
* io/unit.c (get_unit): Remove superfluous if.
2004-08-31 Paul Brook <paul@codesourcery.com>
* io/transfer.c (read_sf): Rename uinty to readlen. Detect EOF.
* io/transfer.c (read_sf): Rename uinty to readlen. Detect EOF.
(finalize_transfer): Move setjmp after namlist IO.
(finalize_transfer): Move setjmp after namlist IO.
* io/unix.c (mem_alloc_r_at): Calculate remaining length correctly.
* io/unix.c (mem_alloc_r_at): Calculate remaining length correctly.
...
...
libgfortran/io/unit.c
View file @
8a210b0f
...
@@ -264,10 +264,8 @@ get_unit (int read_flag)
...
@@ -264,10 +264,8 @@ get_unit (int read_flag)
/* Has to be an external unit */
/* Has to be an external unit */
u
=
find_unit
(
ioparm
.
unit
);
u
=
find_unit
(
ioparm
.
unit
);
if
(
u
!=
NULL
)
return
u
;
return
NULL
;
return
u
;
}
}
...
...
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