| Index: src/arm/macro-assembler-arm.cc
|
| ===================================================================
|
| --- src/arm/macro-assembler-arm.cc (revision 8291)
|
| +++ src/arm/macro-assembler-arm.cc (working copy)
|
| @@ -445,20 +445,6 @@
|
| }
|
|
|
|
|
| -void MacroAssembler::SmiJumpTable(Register index, Vector<Label*> targets) {
|
| - // Empty the const pool.
|
| - CheckConstPool(true, true);
|
| - add(pc, pc, Operand(index,
|
| - LSL,
|
| - Instruction::kInstrSizeLog2 - kSmiTagSize));
|
| - BlockConstPoolBefore(pc_offset() + (targets.length() + 1) * kInstrSize);
|
| - nop(); // Jump table alignment.
|
| - for (int i = 0; i < targets.length(); i++) {
|
| - b(targets[i]);
|
| - }
|
| -}
|
| -
|
| -
|
| void MacroAssembler::LoadRoot(Register destination,
|
| Heap::RootListIndex index,
|
| Condition cond) {
|
|
|