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

Unified Diff: src/debug/debug.h

Issue 1477343002: Pass an isolate to RelocInfo (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: updates Created 5 years, 1 month 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/assembler.cc ('k') | src/debug/liveedit.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/debug/debug.h
diff --git a/src/debug/debug.h b/src/debug/debug.h
index 009070b2957600e1069797e85a4c9ea9b8d0a08d..bbd1a415e43f1fd7fb3c36033db75240a9c6e095 100644
--- a/src/debug/debug.h
+++ b/src/debug/debug.h
@@ -106,7 +106,7 @@ class BreakLocation {
inline RelocInfo rinfo() const {
- return RelocInfo(pc(), rmode(), data_, code());
+ return RelocInfo(debug_info_->GetIsolate(), pc(), rmode(), data_, code());
}
inline int position() const { return position_; }
« no previous file with comments | « src/assembler.cc ('k') | src/debug/liveedit.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698