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

Unified Diff: src/compiler/instruction.cc

Issue 1404983002: [turbofan]: Fix double register output in traces (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 2 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/instruction.cc
diff --git a/src/compiler/instruction.cc b/src/compiler/instruction.cc
index a7ed0e5f236f7bae334f7810ee41efc80bcf624e..5f02f11efde297bfca8f266172353a37d5859568 100644
--- a/src/compiler/instruction.cc
+++ b/src/compiler/instruction.cc
@@ -119,7 +119,8 @@ std::ostream& operator<<(std::ostream& os,
<< "|R";
break;
case AllocatedOperand::DOUBLE_REGISTER:
- os << "[" << DoubleRegisterOperand::cast(op).GetRegister().ToString()
+ os << "["
+ << DoubleRegisterOperand::cast(op).GetDoubleRegister().ToString()
<< "|R";
break;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698