summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorRusty Wagner <rusty@vector35.com>2017-02-28 19:01:47 -0500
committerRusty Wagner <rusty@vector35.com>2017-02-28 19:01:47 -0500
commitafe6a3c1d97c1ac2fd3be04f710caa1424216edd (patch)
treeb95d557a1644a08d2f9e97568c27b2d1f86f69b6 /python
parent57a3ea491d2d819ab5415d8d7bdf7e9e505808fc (diff)
Adding return address register value
Diffstat (limited to 'python')
-rw-r--r--python/function.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/python/function.py b/python/function.py
index 86c93bf7..07187080 100644
--- a/python/function.py
+++ b/python/function.py
@@ -101,6 +101,8 @@ class RegisterValue(object):
return "<table: %s>" % ', '.join([repr(i) for i in self.table])
if self.type == RegisterValueType.OffsetFromUndeterminedValue:
return "<undetermined with offset %#x>" % self.offset
+ if self.type == RegisterValueType.ReturnAddressValue:
+ return "<return address>"
return "<undetermined>"