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

Unified Diff: src/hydrogen-instructions.h

Issue 1144523004: Remove unnecessary Isolate::Current calls from hydrogen-instructions (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: updates Created 5 years, 7 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 | « no previous file | src/hydrogen-instructions.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/hydrogen-instructions.h
diff --git a/src/hydrogen-instructions.h b/src/hydrogen-instructions.h
index ff02212dcb892945caa1a9c538d2da43f3bc3ae8..1288bc07edced5fdad3c802054c00de634581e91 100644
--- a/src/hydrogen-instructions.h
+++ b/src/hydrogen-instructions.h
@@ -6843,7 +6843,7 @@ class HStoreNamedField final : public HTemplateInstruction<3> {
Handle<Map> transition_map() const {
if (has_transition()) {
return Handle<Map>::cast(
- HConstant::cast(transition())->handle(Isolate::Current()));
+ HConstant::cast(transition())->handle(isolate()));
} else {
return Handle<Map>();
}
« no previous file with comments | « no previous file | src/hydrogen-instructions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698