Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
binutils-gdb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sebastien Michelland
binutils-gdb
Commits
b4928193
Commit
b4928193
authored
17 years ago
by
Nick Clifton
Browse files
Options
Downloads
Patches
Plain Diff
* elf32-mep.c (mep_final_link_relocate) [R_MEP_HI16S]: Correctly compensate
for high bit set in R_MEP_LOW16.
parent
1a412f5f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
bfd/ChangeLog
+9
-0
9 additions, 0 deletions
bfd/ChangeLog
bfd/elf32-mep.c
+2
-0
2 additions, 0 deletions
bfd/elf32-mep.c
with
11 additions
and
0 deletions
bfd/ChangeLog
+
9
−
0
View file @
b4928193
2007-07-04 Nick Clifton <nickc@redhat.com>
Import this patch from an internal tree:
2001-07-17 Richard Henderson <rth@redhat.com>
* elf32-mep.c (mep_final_link_relocate) [R_MEP_HI16S]: Correctly
compensate for high bit set in R_MEP_LOW16.
2007-07-03 Joseph Myers <joseph@codesourcery.com>
* elf32-arm.c (elf32_arm_merge_eabi_attributes): Copy type from
...
...
This diff is collapsed.
Click to expand it.
bfd/elf32-mep.c
+
2
−
0
View file @
b4928193
...
...
@@ -333,6 +333,8 @@ mep_final_link_relocate
byte
[
3
^
e2
]
=
((
u
>>
16
)
&
0xff
);
break
;
case
R_MEP_HI16S
:
/* ----------------vutsrqponmlkjihg */
if
(
s
&
0x8000
)
s
+=
0x10000
;
byte
[
2
^
e2
]
=
((
s
>>
24
)
&
0xff
);
byte
[
3
^
e2
]
=
((
s
>>
16
)
&
0xff
);
break
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment