Showing with 2 additions and 2 deletions.
  1. +1 −1 src/ia32/macroassembler-ia32.cc
  2. +1 −1 src/x64/macroassembler-x64.cc
@@ -148,7 +148,7 @@ void Masm::AllocateSpills() {
void Masm::FinalizeSpills() {
if (spill_reloc_ == NULL) return;

spill_reloc_->target(RoundUp(spill_offset_ + (spills_ + 1) << 2, 16) + 8);
spill_reloc_->target(RoundUp(spill_offset_ + ((spills_ + 1) << 2), 16) + 8);
}


@@ -145,7 +145,7 @@ void Masm::AllocateSpills() {
void Masm::FinalizeSpills() {
if (spill_reloc_ == NULL) return;

spill_reloc_->target(RoundUp(spill_offset_ + (spills_ + 1) << 3, 16));
spill_reloc_->target(RoundUp(spill_offset_ + ((spills_ + 1) << 3), 16));
}