Revision: 10316
Author:   [email protected]
Date:     Mon Jan  2 01:46:47 2012
Log: Fix typo in tools/grokdump.py. Stack pointer on x86 is esp not rbp.

[email protected]

Review URL: http://codereview.chromium.org/9069001
http://code.google.com/p/v8/source/detail?r=10316

Modified:
 /branches/bleeding_edge/tools/grokdump.py

=======================================
--- /branches/bleeding_edge/tools/grokdump.py   Thu Dec 15 04:13:34 2011
+++ /branches/bleeding_edge/tools/grokdump.py   Mon Jan  2 01:46:47 2012
@@ -486,7 +486,7 @@
     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

Reply via email to