| Index: src/assembler-arm.cc
|
| diff --git a/src/assembler-arm.cc b/src/assembler-arm.cc
|
| index e057fe033b77289d354bfea16155a34ff598256c..12d110b9b5807061b1efe3acedc6d14e7df712ad 100644
|
| --- a/src/assembler-arm.cc
|
| +++ b/src/assembler-arm.cc
|
| @@ -41,10 +41,6 @@
|
|
|
| namespace v8 { namespace internal {
|
|
|
| -DEFINE_bool(debug_code, false,
|
| - "generate extra code (comments, assertions) for debugging");
|
| -
|
| -
|
| // -----------------------------------------------------------------------------
|
| // Implementation of Register and CRegister
|
|
|
| @@ -272,11 +268,6 @@ enum {
|
| };
|
|
|
|
|
| -DEFINE_bool(push_pop_elimination, true,
|
| - "eliminate redundant push/pops in assembly code");
|
| -DEFINE_bool(print_push_pop_elimination, false,
|
| - "print elimination of redundant push/pops in assembly code");
|
| -
|
| // add(sp, sp, 4) instruction (aka Pop())
|
| static const Instr kPopInstruction =
|
| al | 4 * B21 | 4 | LeaveCC | I | sp.code() * B16 | sp.code() * B12;
|
| @@ -469,10 +460,6 @@ void Assembler::print(Label* L) {
|
| }
|
|
|
|
|
| -DEFINE_bool(eliminate_jumps, true, "eliminate jumps to jumps in assembly code");
|
| -DEFINE_bool(print_jump_elimination, false,
|
| - "print elimination of jumps to jumps in assembly code");
|
| -
|
| void Assembler::bind_to(Label* L, int pos) {
|
| ASSERT(0 <= pos && pos <= pc_offset()); // must have a valid binding position
|
| while (L->is_linked()) {
|
|
|