Reviewers: fschneider,
Description:
Fix typo in tools/grokdump.py. Stack pointer on x86 is esp not rbp.
[email protected]
Please review this at http://codereview.chromium.org/9069001/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files:
M tools/grokdump.py
Index: tools/grokdump.py
diff --git a/tools/grokdump.py b/tools/grokdump.py
index
0c7e125e4b6d2dbf63385544db3476a109ee20f6..380bc4ab8f594df188a4043763e1a57ceef8d1cd
100755
--- a/tools/grokdump.py
+++ b/tools/grokdump.py
@@ -486,7 +486,7 @@ class MinidumpReader(object):
if self.arch == MD_CPU_ARCHITECTURE_AMD64:
return self.exception_context.rsp
elif self.arch == MD_CPU_ARCHITECTURE_X86:
- return self.exception_context.rbp
+ return self.exception_context.esp
def FormatIntPtr(self, value):
if self.arch == MD_CPU_ARCHITECTURE_AMD64:
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev