| Index: src/full-codegen/arm64/full-codegen-arm64.cc
|
| diff --git a/src/full-codegen/arm64/full-codegen-arm64.cc b/src/full-codegen/arm64/full-codegen-arm64.cc
|
| index 19db20523fe6594a547fa0940956f2b3f7a52add..7495051cf0d34946ae23df74e0e5563485d9c71e 100644
|
| --- a/src/full-codegen/arm64/full-codegen-arm64.cc
|
| +++ b/src/full-codegen/arm64/full-codegen-arm64.cc
|
| @@ -1014,12 +1014,10 @@ void FullCodeGenerator::VisitForInStatement(ForInStatement* stmt) {
|
| PrepareForBailoutForId(stmt->ToObjectId(), TOS_REG);
|
| __ Push(x0);
|
|
|
| - // 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(x0, x15, x10, x11, x12, x13, &call_runtime);
|
|
|
|
|