Index: src/full-codegen/x64/full-codegen-x64.cc |
diff --git a/src/full-codegen/x64/full-codegen-x64.cc b/src/full-codegen/x64/full-codegen-x64.cc |
index 0eca0a1faf415306ee198412cccb31525deb2dbd..528f533b4db5b837462079487d494caba8446142 100644 |
--- a/src/full-codegen/x64/full-codegen-x64.cc |
+++ b/src/full-codegen/x64/full-codegen-x64.cc |
@@ -970,12 +970,10 @@ void FullCodeGenerator::VisitForInStatement(ForInStatement* stmt) { |
PrepareForBailoutForId(stmt->ToObjectId(), TOS_REG); |
__ Push(rax); |
- // 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); |