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

Unified Diff: src/hydrogen-instructions.cc

Issue 1259963002: [stubs] Don't pass name to Load/StoreGlobalViaContext stubs. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix rebase Created 5 years, 5 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/hydrogen-instructions.h ('k') | src/ia32/code-stubs-ia32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/hydrogen-instructions.cc
diff --git a/src/hydrogen-instructions.cc b/src/hydrogen-instructions.cc
index 24259c8b7bb4b1251851a6e336f16877c6df81fc..b729985e19484e5d87fab68b4dc80fc4c6db2eb5 100644
--- a/src/hydrogen-instructions.cc
+++ b/src/hydrogen-instructions.cc
@@ -3601,8 +3601,8 @@ std::ostream& HStoreNamedGeneric::PrintDataTo(
std::ostream& HStoreGlobalViaContext::PrintDataTo(
std::ostream& os) const { // NOLINT
- return os << name()->ToCString().get() << " = " << NameOf(value())
- << " depth:" << depth() << " slot:" << slot_index();
+ return os << " depth:" << depth() << " slot:" << slot_index() << " = "
+ << NameOf(value());
}
@@ -3658,8 +3658,7 @@ std::ostream& HLoadGlobalGeneric::PrintDataTo(
std::ostream& HLoadGlobalViaContext::PrintDataTo(
std::ostream& os) const { // NOLINT
- return os << name()->ToCString().get() << " "
- << "depth:" << depth() << " slot:" << slot_index();
+ return os << "depth:" << depth() << " slot:" << slot_index();
}
« no previous file with comments | « src/hydrogen-instructions.h ('k') | src/ia32/code-stubs-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698