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
681b5028
Commit
681b5028
authored
Dec 13, 2004
by
David Edelsohn
Committed by
David Edelsohn
Dec 13, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* io/transfer.c (read_sf): Change bitwise "and" to logical "and".
From-SVN: r92094
parent
18faa5da
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
libgfortran/ChangeLog
+4
-0
libgfortran/io/transfer.c
+1
-1
No files found.
libgfortran/ChangeLog
View file @
681b5028
2004-12-13 David Edelsohn <edelsohn@gnu.org>
* io/transfer.c (read_sf): Change bitwise "and" to logical "and".
2004-12-12 Richard Henderson <rth@redhat.com>
* intrinsics/cshift0.c, intrinsics/eoshift0.c, intrinsics/eoshift2.c,
...
...
libgfortran/io/transfer.c
View file @
681b5028
...
...
@@ -162,7 +162,7 @@ read_sf (int *length)
/* If we have a line without a terminating \n, drop through to
EOR below. */
if
(
readlen
<
1
&
n
==
0
)
if
(
readlen
<
1
&
&
n
==
0
)
{
generate_error
(
ERROR_END
,
NULL
);
return
NULL
;
...
...
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