Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Unified Diff: tools/grokdump.py

Issue 12704015: Explicitly pass the isolate to create handles in ic.cc (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/ic.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/grokdump.py
diff --git a/tools/grokdump.py b/tools/grokdump.py
index b19da1ee9890de4514c7d4f4d7bd7afe9da7397e..f3ae8a22ba357ad3c8435fa23fa9ed2fbc0adf9e 100755
--- a/tools/grokdump.py
+++ b/tools/grokdump.py
@@ -1933,7 +1933,7 @@ class InspectionShell(cmd.Cmd):
Print a descriptor array in a readable format.
"""
start = int(address, 16)
- if ((start & 1) == 1): start = start + 1
+ if ((start & 1) == 1): start = start - 1
DescriptorArray(FixedArray(self.heap, None, start)).Print(Printer())
def do_do_map(self, address):
« no previous file with comments | « src/ic.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698