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 6f0b4ec04329ee71bf2ce6b2c994233114852778..754bb7afe1d7cdcc2bafecdd77be52b312f8b278 100644 |
--- a/src/full-codegen/s390/full-codegen-s390.cc |
+++ b/src/full-codegen/s390/full-codegen-s390.cc |
@@ -306,39 +306,34 @@ void FullCodeGenerator::Generate() { |
__ CallRuntime(Runtime::kTraceEnter); |
} |
- // Visit the declarations and body unless there is an illegal |
- // redeclaration. |
- if (scope()->HasIllegalRedeclaration()) { |
- EmitIllegalRedeclaration(); |
- } else { |
- PrepareForBailoutForId(BailoutId::FunctionEntry(), NO_REGISTERS); |
- { |
- Comment cmnt(masm_, "[ Declarations"); |
- VisitDeclarations(scope()->declarations()); |
- } |
+ // Visit the declarations and body. |
+ PrepareForBailoutForId(BailoutId::FunctionEntry(), NO_REGISTERS); |
+ { |
+ Comment cmnt(masm_, "[ Declarations"); |
+ VisitDeclarations(scope()->declarations()); |
+ } |
- // Assert that the declarations do not use ICs. Otherwise the debugger |
- // won't be able to redirect a PC at an IC to the correct IC in newly |
- // recompiled code. |
- DCHECK_EQ(0, ic_total_count_); |
+ // Assert that the declarations do not use ICs. Otherwise the debugger |
+ // won't be able to redirect a PC at an IC to the correct IC in newly |
+ // recompiled code. |
+ DCHECK_EQ(0, ic_total_count_); |
- { |
- Comment cmnt(masm_, "[ Stack check"); |
- PrepareForBailoutForId(BailoutId::Declarations(), NO_REGISTERS); |
- Label ok; |
- __ LoadRoot(ip, Heap::kStackLimitRootIndex); |
- __ CmpLogicalP(sp, ip); |
- __ bge(&ok, Label::kNear); |
- __ Call(isolate()->builtins()->StackCheck(), RelocInfo::CODE_TARGET); |
- __ bind(&ok); |
- } |
+ { |
+ Comment cmnt(masm_, "[ Stack check"); |
+ PrepareForBailoutForId(BailoutId::Declarations(), NO_REGISTERS); |
+ Label ok; |
+ __ LoadRoot(ip, Heap::kStackLimitRootIndex); |
+ __ CmpLogicalP(sp, ip); |
+ __ bge(&ok, Label::kNear); |
+ __ Call(isolate()->builtins()->StackCheck(), RelocInfo::CODE_TARGET); |
+ __ bind(&ok); |
+ } |
- { |
- Comment cmnt(masm_, "[ Body"); |
- DCHECK(loop_depth() == 0); |
- VisitStatements(literal()->body()); |
- DCHECK(loop_depth() == 0); |
- } |
+ { |
+ Comment cmnt(masm_, "[ Body"); |
+ DCHECK(loop_depth() == 0); |
+ VisitStatements(literal()->body()); |
+ DCHECK(loop_depth() == 0); |
} |
// Always emit a 'return undefined' in case control fell off the end of |