Index: src/full-codegen/mips/full-codegen-mips.cc |
diff --git a/src/full-codegen/mips/full-codegen-mips.cc b/src/full-codegen/mips/full-codegen-mips.cc |
index 50cf79ee29dc0e00cb0c3e801d006beb0e46bdb8..2ebdcb90fa28ad202b63eadec847f9de6b72795c 100644 |
--- a/src/full-codegen/mips/full-codegen-mips.cc |
+++ b/src/full-codegen/mips/full-codegen-mips.cc |
@@ -1016,12 +1016,10 @@ void FullCodeGenerator::VisitForInStatement(ForInStatement* stmt) { |
PrepareForBailoutForId(stmt->ToObjectId(), TOS_REG); |
__ push(a0); |
- // Check cache validity in generated code. This is a fast case for |
- // the JSObject::IsSimpleEnum cache validity checks. If we cannot |
- // guarantee cache validity, call the runtime system to check cache |
- // validity or get the property names in a fixed array. |
- // Note: Proxies never have an enum cache, so will always take the |
- // slow path. |
+ // Check cache validity in generated code. If we cannot guarantee cache |
+ // validity, call the runtime system to check cache validity or get the |
+ // property names in a fixed array. Note: Proxies never have an enum cache, |
+ // so will always take the slow path. |
Label call_runtime; |
__ CheckEnumCache(&call_runtime); |