Index: src/full-codegen/arm/full-codegen-arm.cc |
diff --git a/src/full-codegen/arm/full-codegen-arm.cc b/src/full-codegen/arm/full-codegen-arm.cc |
index 68a21a436ec60708627337671b6be3cfe8a656d6..7e9babd49a45a235944dee504d35557df29bc774 100644 |
--- a/src/full-codegen/arm/full-codegen-arm.cc |
+++ b/src/full-codegen/arm/full-codegen-arm.cc |
@@ -1016,12 +1016,10 @@ void FullCodeGenerator::VisitForInStatement(ForInStatement* stmt) { |
PrepareForBailoutForId(stmt->ToObjectId(), TOS_REG); |
__ push(r0); |
- // 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); |