diff options
Diffstat (limited to 'gprof/aarch64.c')
-rw-r--r-- | gprof/aarch64.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gprof/aarch64.c b/gprof/aarch64.c index 3ab6067dbac..68febf93723 100644 --- a/gprof/aarch64.c +++ b/gprof/aarch64.c @@ -54,8 +54,7 @@ aarch64_find_call (Sym *parent, bfd_vma p_lowpc, bfd_vma p_highpc) DBG (CALLDEBUG, printf ("[find_call] %s: 0x%lx to 0x%lx\n", parent->name, (unsigned long) p_lowpc, (unsigned long) p_highpc)); - p_lowpc = (p_lowpc + 3) & ~3; - p_highpc &= ~3; + for (pc = p_lowpc; pc < p_highpc; pc += 4) { |