| Index: src/x64/assembler-x64.cc
|
| ===================================================================
|
| --- src/x64/assembler-x64.cc (revision 7864)
|
| +++ src/x64/assembler-x64.cc (working copy)
|
| @@ -1215,7 +1215,7 @@
|
| }
|
|
|
|
|
| -void Assembler::j(Condition cc, Label* L, Hint hint, Label::Distance distance) {
|
| +void Assembler::j(Condition cc, Label* L, Label::Distance distance) {
|
| if (cc == always) {
|
| jmp(L);
|
| return;
|
| @@ -1224,7 +1224,6 @@
|
| }
|
| EnsureSpace ensure_space(this);
|
| ASSERT(is_uint4(cc));
|
| - if (FLAG_emit_branch_hints && hint != no_hint) emit(hint);
|
| if (L->is_bound()) {
|
| const int short_size = 2;
|
| const int long_size = 6;
|
|
|