Index: src/compiler/frame.cc |
diff --git a/src/compiler/frame.cc b/src/compiler/frame.cc |
index 079fccb71cf22d40d85cfe3b736f4081a986adb1..7b9a797f5a4d45345233870f49a27c284569bfbf 100644 |
--- a/src/compiler/frame.cc |
+++ b/src/compiler/frame.cc |
@@ -14,8 +14,9 @@ namespace compiler { |
Frame::Frame(int fixed_frame_size_in_slots) |
: frame_slot_count_(fixed_frame_size_in_slots), |
- spilled_callee_register_slot_count_(0), |
- stack_slot_count_(0), |
+ outgoing_parameter_slot_count_(0), |
+ callee_saved_slot_count_(0), |
+ spill_slot_count_(0), |
allocated_registers_(NULL), |
allocated_double_registers_(NULL) {} |