Skip to content

Commit

Permalink
Call the right region_* methods for ARM.
Browse files Browse the repository at this point in the history
  • Loading branch information
ssunny7 committed Apr 26, 2017
1 parent a8c5578 commit 095f63e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dyninstAPI/src/linux.C
Expand Up @@ -101,7 +101,7 @@ void PCProcess::inferiorMallocConstraints(Address near, Address &lo, Address &hi
inferiorHeapType /* type */ )
{
if (near) {
#if !defined(arch_x86_64) && !defined(arch_power)
#if !defined(arch_x86_64) && !defined(arch_power) && !defined(arch_aarch64)
lo = region_lo(near);
hi = region_hi(near);
#else
Expand Down

0 comments on commit 095f63e

Please sign in to comment.