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
a8dcd388
Commit
a8dcd388
authored
11 years ago
by
Alan Modra
Browse files
Options
Downloads
Patches
Plain Diff
* aarch64.c (aarch64_find_call): Promote to bfd_vma before sign
extending.
parent
34e02e25
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
gprof/ChangeLog
+5
-0
5 additions, 0 deletions
gprof/ChangeLog
gprof/aarch64.c
+1
-1
1 addition, 1 deletion
gprof/aarch64.c
with
6 additions
and
1 deletion
gprof/ChangeLog
+
5
−
0
View file @
a8dcd388
2013-05-24 Alan Modra <amodra@gmail.com>
* aarch64.c (aarch64_find_call): Promote to bfd_vma before sign
extending.
2013-05-22 Venkataramanan Kumar <Venkataramanan.kumar@linaro.org>
2013-05-22 Venkataramanan Kumar <Venkataramanan.kumar@linaro.org>
* aarch64.c: New file.
* aarch64.c: New file.
...
...
This diff is collapsed.
Click to expand it.
gprof/aarch64.c
+
1
−
1
View file @
a8dcd388
...
@@ -68,7 +68,7 @@ aarch64_find_call (Sym *parent, bfd_vma p_lowpc, bfd_vma p_highpc)
...
@@ -68,7 +68,7 @@ aarch64_find_call (Sym *parent, bfd_vma p_lowpc, bfd_vma p_highpc)
/* Regular pc relative addressing check that this is the
/* Regular pc relative addressing check that this is the
address of a function. */
address of a function. */
offset
=
(((
insn
&
0x3ffffff
)
^
0x2000000
)
-
0x2000000
)
<<
2
;
offset
=
(((
(
bfd_vma
)
insn
&
0x3ffffff
)
^
0x2000000
)
-
0x2000000
)
<<
2
;
dest_pc
=
pc
+
offset
;
dest_pc
=
pc
+
offset
;
...
...
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