Index: src/asmjs/asm-wasm-builder.cc |
diff --git a/src/asmjs/asm-wasm-builder.cc b/src/asmjs/asm-wasm-builder.cc |
index 61214f165c2dd8436dedd76ac6ef8b402203c565..bf89ed13872bef8fb6ffa61416a24214ecc9e46f 100644 |
--- a/src/asmjs/asm-wasm-builder.cc |
+++ b/src/asmjs/asm-wasm-builder.cc |
@@ -101,7 +101,6 @@ |
uint32_t index = LookupOrInsertGlobal(fv->var, fv->type); |
foreign_init_function_->EmitWithVarInt(kExprSetGlobal, index); |
} |
- foreign_init_function_->Emit(kExprEnd); |
} |
Handle<FixedArray> GetForeignArgs() { |
@@ -132,7 +131,6 @@ |
return false; |
} |
BuildForeignInitFunction(); |
- init_function_->Emit(kExprEnd); // finish init function. |
return true; |
} |
@@ -545,10 +543,6 @@ |
RECURSE(VisitDeclarations(scope->declarations())); |
if (typer_failed_) return; |
RECURSE(VisitStatements(expr->body())); |
- if (scope_ == kFuncScope) { |
- // Finish the function-body scope block. |
- current_function_builder_->Emit(kExprEnd); |
- } |
} |
void VisitNativeFunctionLiteral(NativeFunctionLiteral* expr) { |