Index: src/ia32/lithium-ia32.cc |
=================================================================== |
--- src/ia32/lithium-ia32.cc (revision 11067) |
+++ src/ia32/lithium-ia32.cc (working copy) |
@@ -368,11 +368,7 @@ |
int LChunk::GetNextSpillIndex(bool is_double) { |
// Skip a slot if for a double-width slot. |
- if (is_double) { |
- spill_slot_count_ |= 1; // Make it odd, so incrementing makes it even. |
- spill_slot_count_++; |
- num_double_slots_++; |
- } |
+ if (is_double) spill_slot_count_++; |
return spill_slot_count_++; |
} |