| Index: src/full-codegen/s390/full-codegen-s390.cc
|
| diff --git a/src/full-codegen/s390/full-codegen-s390.cc b/src/full-codegen/s390/full-codegen-s390.cc
|
| index b7bb97668c4681a69423d5959f216f11d9607849..051495fcc08fae5b473642667c1bcb4ca37f9249 100644
|
| --- a/src/full-codegen/s390/full-codegen-s390.cc
|
| +++ b/src/full-codegen/s390/full-codegen-s390.cc
|
| @@ -945,12 +945,10 @@ void FullCodeGenerator::VisitForInStatement(ForInStatement* stmt) {
|
| PrepareForBailoutForId(stmt->ToObjectId(), TOS_REG);
|
| __ push(r2);
|
|
|
| - // 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);
|
|
|
|
|