| Index: src/compiler/mips64/code-generator-mips64.cc
|
| diff --git a/src/compiler/mips64/code-generator-mips64.cc b/src/compiler/mips64/code-generator-mips64.cc
|
| index 9f881ec587da5e73c144c60a4374c2c2d5359e62..b81f90f22a0ee4c317e3260271dfc5406e615ed5 100644
|
| --- a/src/compiler/mips64/code-generator-mips64.cc
|
| +++ b/src/compiler/mips64/code-generator-mips64.cc
|
| @@ -1560,9 +1560,7 @@ void CodeGenerator::AssembleArchTableSwitch(Instruction* instr) {
|
| __ Branch(GetLabel(i.InputRpo(1)), hs, input, Operand(case_count));
|
| __ BlockTrampolinePoolFor(static_cast<int>(case_count) * 2 + 7);
|
| // Ensure that dd-ed labels use 8 byte aligned addresses.
|
| - if ((masm()->pc_offset() & 7) != 0) {
|
| - __ nop();
|
| - }
|
| + __ Align(8);
|
| __ bal(&here);
|
| __ dsll(at, input, 3); // Branch delay slot.
|
| __ bind(&here);
|
|
|