summaryrefslogtreecommitdiff
path: root/scripts/checkstack.pl
diff options
context:
space:
mode:
authorLinux Build Service Account <lnxbuild@localhost>2019-07-17 06:26:19 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2019-07-17 06:26:18 -0700
commitc9b07721b75470998976715e658a3cfb0832ff9b (patch)
treefe0781aa74e4c59c6fd997df49809b097b2d7f6c /scripts/checkstack.pl
parent91c93365f76e98b5547e03c74ee38b7ac36328ae (diff)
parentd30c59c6201d8d4f28a55f510b6594ec0fce526d (diff)
Merge "Merge android-4.4.185 (14e1196) into msm-4.4"
Diffstat (limited to 'scripts/checkstack.pl')
-rwxr-xr-xscripts/checkstack.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/checkstack.pl b/scripts/checkstack.pl
index 12a6940741fe..b8f616545277 100755
--- a/scripts/checkstack.pl
+++ b/scripts/checkstack.pl
@@ -45,7 +45,7 @@ my (@stack, $re, $dre, $x, $xs, $funcre);
$x = "[0-9a-f]"; # hex character
$xs = "[0-9a-f ]"; # hex character or space
$funcre = qr/^$x* <(.*)>:$/;
- if ($arch eq 'aarch64') {
+ if ($arch =~ '^(aarch|arm)64$') {
#ffffffc0006325cc: a9bb7bfd stp x29, x30, [sp, #-80]!
$re = qr/^.*stp.*sp, \#-([0-9]{1,8})\]\!/o;
} elsif ($arch eq 'arm') {