diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2006-08-22 16:57:05 +0200 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-08-25 13:30:27 +1000 |
commit | 271c511db9d37d6797745adb1f151a8bd2838c6f (patch) | |
tree | fe789181efeada6073cf3fb6d3d9b366e2f7a742 /scripts | |
parent | 39ed2fe62c39ac46cda00b1759806a297f38743b (diff) | |
download | linux-3.10-271c511db9d37d6797745adb1f151a8bd2838c6f.tar.gz linux-3.10-271c511db9d37d6797745adb1f151a8bd2838c6f.tar.bz2 linux-3.10-271c511db9d37d6797745adb1f151a8bd2838c6f.zip |
[POWERPC] make checkstack work with ARCH=powerpc
This patch adds 'powerpc' architecture support to checkstack.pl.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/checkstack.pl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/checkstack.pl b/scripts/checkstack.pl index b34924663ac..f7844f6aa48 100755 --- a/scripts/checkstack.pl +++ b/scripts/checkstack.pl @@ -62,6 +62,8 @@ my (@stack, $re, $x, $xs); } elsif ($arch eq 'ppc64') { #XXX $re = qr/.*stdu.*r1,-($x{1,8})\(r1\)/o; + } elsif ($arch eq 'powerpc') { + $re = qr/.*st[dw]u.*r1,-($x{1,8})\(r1\)/o; } elsif ($arch =~ /^s390x?$/) { # 11160: a7 fb ff 60 aghi %r15,-160 $re = qr/.*ag?hi.*\%r15,-(([0-9]{2}|[3-9])[0-9]{2})/o; |