Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
ppe42-binutils
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
OpenPOWER Firmware
ppe42-binutils
Commits
55f8b826
Commit
55f8b826
authored
Sep 15, 2008
by
Alan Modra
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* write.c (install_reloc): Correct EMIT_SECTION_SYMBOLS test.
parent
455bde50
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gas/ChangeLog
gas/ChangeLog
+4
-0
gas/write.c
gas/write.c
+2
-2
No files found.
gas/ChangeLog
View file @
55f8b826
2008-09-15 Alan Modra <amodra@bigpond.net.au>
* write.c (install_reloc): Correct EMIT_SECTION_SYMBOLS test.
2008-09-15 Alan Modra <amodra@bigpond.net.au>
* config/tc-frv.c (md_apply_fix): Use abs_section_sym for
...
...
gas/write.c
View file @
55f8b826
...
...
@@ -1090,8 +1090,8 @@ install_reloc (asection *sec, arelent *reloc, fragS *fragp,
&&
(
sym
=
*
reloc
->
sym_ptr_ptr
)
!=
NULL
&&
(
sym
->
flags
&
BSF_KEEP
)
==
0
&&
((
sym
->
flags
&
BSF_SECTION_SYM
)
==
0
||
!
EMIT_SECTION_SYMBOLS
||
!
bfd_is_abs_section
(
sym
->
section
)))
||
(
EMIT_SECTION_SYMBOLS
&&
!
bfd_is_abs_section
(
sym
->
section
)
)))
as_bad_where
(
file
,
line
,
_
(
"redefined symbol cannot be used on reloc"
));
s
=
bfd_install_relocation
(
stdoutput
,
reloc
,
...
...
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