Minor fixes in objects printer.

BUG=

Review-Url: https://codereview.chromium.org/2468433002
Cr-Commit-Position: refs/heads/master@{#40674}
This commit is contained in:
ishell 2016-10-31 08:16:17 -07:00 committed by Commit bot
parent 7c22a153e2
commit 9dd638fe70

View File

@ -66,11 +66,12 @@ void HeapObject::HeapObjectPrint(std::ostream& os) { // NOLINT
break;
case HEAP_NUMBER_TYPE:
HeapNumber::cast(this)->HeapNumberPrint(os);
os << "\n";
break;
case MUTABLE_HEAP_NUMBER_TYPE:
os << "<mutable ";
HeapNumber::cast(this)->HeapNumberPrint(os);
os << ">";
os << ">\n";
break;
case SIMD128_VALUE_TYPE:
Simd128Value::cast(this)->Simd128ValuePrint(os);