Index: src/ia32/full-codegen-ia32.cc |
diff --git a/src/ia32/full-codegen-ia32.cc b/src/ia32/full-codegen-ia32.cc |
index efbdf135445b9988494af3affdfab5775f3bd9f4..3bfb3ec4b890175463ad6bf583a8e4a27d6a0537 100644 |
--- a/src/ia32/full-codegen-ia32.cc |
+++ b/src/ia32/full-codegen-ia32.cc |
@@ -164,6 +164,8 @@ void FullCodeGenerator::Generate() { |
{ Comment cmnt(masm_, "[ Allocate locals"); |
int locals_count = info->scope()->num_stack_slots(); |
+ // Generators allocate locals, if any, in context slots. |
+ ASSERT(!info->function()->is_generator() || locals_count == 0); |
if (locals_count == 1) { |
__ push(Immediate(isolate()->factory()->undefined_value())); |
} else if (locals_count > 1) { |