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
7b6ffd11
Commit
7b6ffd11
authored
Jan 27, 1998
by
Kamil Iskra
Committed by
Jeff Law
Jan 27, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tlink.c (scan_linker_output): Call fclose() for opened files.
From-SVN: r17504
parent
60593797
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletions
+9
-1
gcc/ChangeLog
+4
-0
gcc/tlink.c
+5
-1
No files found.
gcc/ChangeLog
View file @
7b6ffd11
Tue Jan 27 10:22:13 1998 Kamil Iskra <iskra@student.uci.agh.edu.pl>
* tlink.c (scan_linker_output): Call fclose() for opened files.
Tue Jan 27 05:05:26 1998 Richard Henderson <rth@cygnus.com>
Tue Jan 27 05:05:26 1998 Richard Henderson <rth@cygnus.com>
* alpha.c (output_epilog [!VMS]): Don't tag global functions if
* alpha.c (output_epilog [!VMS]): Don't tag global functions if
...
...
gcc/tlink.c
View file @
7b6ffd11
...
@@ -575,7 +575,10 @@ scan_linker_output (fname)
...
@@ -575,7 +575,10 @@ scan_linker_output (fname)
}
}
if
(
sym
&&
sym
->
tweaked
)
if
(
sym
&&
sym
->
tweaked
)
return
0
;
{
fclose
(
stream
);
return
0
;
}
if
(
sym
&&
!
sym
->
tweaking
)
if
(
sym
&&
!
sym
->
tweaking
)
{
{
if
(
tlink_verbose
>=
2
)
if
(
tlink_verbose
>=
2
)
...
@@ -588,6 +591,7 @@ scan_linker_output (fname)
...
@@ -588,6 +591,7 @@ scan_linker_output (fname)
obstack_free
(
&
temporary_obstack
,
temporary_firstobj
);
obstack_free
(
&
temporary_obstack
,
temporary_firstobj
);
}
}
fclose
(
stream
);
return
(
file_stack
!=
NULL
);
return
(
file_stack
!=
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