| Index: src/assembler-ia32.cc
|
| diff --git a/src/assembler-ia32.cc b/src/assembler-ia32.cc
|
| index 483ae0efbaa97a13165f07583fd04a769a140c02..3f2b2c9f6aa371d72766f3074360751ec7b5e452 100644
|
| --- a/src/assembler-ia32.cc
|
| +++ b/src/assembler-ia32.cc
|
| @@ -42,10 +42,6 @@
|
|
|
| namespace v8 { namespace internal {
|
|
|
| -DEFINE_bool(debug_code, false,
|
| - "generate extra code (comments, assertions) for debugging");
|
| -DEFINE_bool(emit_branch_hints, false, "emit branch hints");
|
| -
|
| // -----------------------------------------------------------------------------
|
| // Implementation of Register
|
|
|
| @@ -412,11 +408,6 @@ void Assembler::push(const Immediate& x) {
|
| }
|
|
|
|
|
| -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");
|
| -
|
| void Assembler::push(Register src) {
|
| EnsureSpace ensure_space(this);
|
| last_pc_ = pc_;
|
| @@ -1180,10 +1171,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) {
|
| EnsureSpace ensure_space(this);
|
| last_pc_ = NULL;
|
|
|