Index: src/arm64/lithium-arm64.cc |
diff --git a/src/arm64/lithium-arm64.cc b/src/arm64/lithium-arm64.cc |
index 1ed1e14a11ccfd9c446efa31875d1ddf625f28c9..acae6b0cec60b6cf7152b7fb688e92dea8bc3f9e 100644 |
--- a/src/arm64/lithium-arm64.cc |
+++ b/src/arm64/lithium-arm64.cc |
@@ -284,7 +284,9 @@ void LStoreKeyedGeneric::PrintDataTo(StringStream* stream) { |
void LStoreNamedField::PrintDataTo(StringStream* stream) { |
object()->PrintTo(stream); |
- hydrogen()->access().PrintTo(stream); |
+ OStringStream os; |
+ os << hydrogen()->access(); |
+ stream->Add(os.c_str()); |
stream->Add(" <- "); |
value()->PrintTo(stream); |
} |