Index: src/compiler/instruction.cc |
diff --git a/src/compiler/instruction.cc b/src/compiler/instruction.cc |
index 9ab81b6ae1af42039b05e2bb1473cde84340e371..35232807e655f188e4dc55e694d4f141ff97b8b7 100644 |
--- a/src/compiler/instruction.cc |
+++ b/src/compiler/instruction.cc |
@@ -300,6 +300,8 @@ OStream& operator<<(OStream& os, const Constant& constant) { |
return os << constant.ToInt32(); |
case Constant::kInt64: |
return os << constant.ToInt64() << "l"; |
+ case Constant::kFloat32: |
+ return os << constant.ToFloat32() << "f"; |
case Constant::kFloat64: |
return os << constant.ToFloat64(); |
case Constant::kExternalReference: |