aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/checkstack.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/checkstack.py')
-rwxr-xr-xscripts/checkstack.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/checkstack.py b/scripts/checkstack.py
index e4cf45cc..060535bd 100755
--- a/scripts/checkstack.py
+++ b/scripts/checkstack.py
@@ -170,10 +170,10 @@ def main():
ref = m.group('ref')
if '+' in ref:
# Inter-function jump.
- pass
+ continue
elif insn.startswith('ld') or insn.startswith('st'):
# memory access
- pass
+ continue
elif insn in ('rjmp', 'jmp', 'brne', 'brcs'):
# Tail call
cur.noteCall(insnaddr, calladdr, 0)