Index: src/string-stream.cc |
diff --git a/src/string-stream.cc b/src/string-stream.cc |
index 8c9c5bb3692da0d6d2a1ea3cdf2206273709b089..21f66a613061d190ad49dca044ecf122a37cef6a 100644 |
--- a/src/string-stream.cc |
+++ b/src/string-stream.cc |
@@ -353,7 +353,7 @@ void StringStream::PrintUsingMap(JSObject* js_object) { |
FieldIndex index = FieldIndex::ForDescriptor(map, i); |
if (js_object->IsUnboxedDoubleField(index)) { |
double value = js_object->RawFastDoublePropertyAt(index); |
- Add("<unboxed double> %.16g\n", value); |
+ Add("<unboxed double> %.16g\n", FmtElm(value)); |
} else { |
Object* value = js_object->RawFastPropertyAt(index); |
Add("%o\n", value); |