aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2019-01-18 09:56:19 +0100
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2019-01-18 09:56:19 +0100
commit774879c4e11bca1d4625c9ef1bc51e74cc3d24d0 (patch)
treefa433ba4b39d04bd7bd1923f8cf8b71188866da0
parentf59739a66361367c29aa1c68600b91ff2212d5f7 (diff)
downloadbusybox-w32-774879c4e11bca1d4625c9ef1bc51e74cc3d24d0.tar.gz
busybox-w32-774879c4e11bca1d4625c9ef1bc51e74cc3d24d0.tar.bz2
busybox-w32-774879c4e11bca1d4625c9ef1bc51e74cc3d24d0.zip
checkstack.pl: tweak bfin re
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
-rwxr-xr-xscripts/checkstack.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/checkstack.pl b/scripts/checkstack.pl
index 7833554c8..cf912e0fb 100755
--- a/scripts/checkstack.pl
+++ b/scripts/checkstack.pl
@@ -65,7 +65,7 @@ my (@stack, $re, $dre, $x, $xs, $funcre);
65 $dre = qr/^.*[as][du][db] (%.*),\%(e|r)sp$/o; 65 $dre = qr/^.*[as][du][db] (%.*),\%(e|r)sp$/o;
66 } elsif ($arch eq 'blackfin') { 66 } elsif ($arch eq 'blackfin') {
67 # 52: 00 e8 03 00 LINK 0xc; 67 # 52: 00 e8 03 00 LINK 0xc;
68 $re = qr/.*LINK (0x$x{1,5});$/o; 68 $re = qr/.*[[:space:]]LINK[[:space:]]*(0x$x{1,8})/o;
69 } elsif ($arch eq 'ia64') { 69 } elsif ($arch eq 'ia64') {
70 #e0000000044011fc: 01 0f fc 8c adds r12=-384,r12 70 #e0000000044011fc: 01 0f fc 8c adds r12=-384,r12
71 $re = qr/.*adds.*r12=-(([0-9]{2}|[3-9])[0-9]{2}),r12/o; 71 $re = qr/.*adds.*r12=-(([0-9]{2}|[3-9])[0-9]{2}),r12/o;