Index: src/x87/lithium-x87.cc |
diff --git a/src/x87/lithium-x87.cc b/src/x87/lithium-x87.cc |
index 4d0405031fe07d7780ff6f1294216dd1dadf15df..2c4d18dd56b8f83b9e869a55f6d02a885e42655c 100644 |
--- a/src/x87/lithium-x87.cc |
+++ b/src/x87/lithium-x87.cc |
@@ -377,8 +377,9 @@ LOperand* LPlatformChunk::GetNextSpillSlot(RegisterKind kind) { |
void LStoreNamedField::PrintDataTo(StringStream* stream) { |
object()->PrintTo(stream); |
- hydrogen()->access().PrintTo(stream); |
- stream->Add(" <- "); |
+ OStringStream os; |
+ os << hydrogen()->access() << " <- "; |
+ stream->Add(os.c_str()); |
value()->PrintTo(stream); |
} |