| 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 a1c55e018032c33fc8a1e8b87241214e40aa2f47..c1e838dbea781514e886a7ec7b29bf65037a0080 100644
 | 
| --- a/src/full-codegen/s390/full-codegen-s390.cc
 | 
| +++ b/src/full-codegen/s390/full-codegen-s390.cc
 | 
| @@ -1221,7 +1221,7 @@ void FullCodeGenerator::EmitVariableLoad(VariableProxy* proxy,
 | 
|        DCHECK_EQ(NOT_INSIDE_TYPEOF, typeof_mode);
 | 
|        Comment cmnt(masm_, var->IsContextSlot() ? "[ Context variable"
 | 
|                                                 : "[ Stack variable");
 | 
| -      if (NeedsHoleCheckForLoad(proxy)) {
 | 
| +      if (proxy->needs_hole_check()) {
 | 
|          // Throw a reference error when using an uninitialized let/const
 | 
|          // binding in harmony mode.
 | 
|          Label done;
 | 
| 
 |