Commit f4c9f222 authored by danno's avatar danno Committed by Commit bot

[turbofan]: Fix double register output in traces

Review URL: https://codereview.chromium.org/1404983002

Cr-Commit-Position: refs/heads/master@{#31297}
parent 73c9be9b
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment