| Index: src/x64/assembler-x64.h
|
| diff --git a/src/x64/assembler-x64.h b/src/x64/assembler-x64.h
|
| index c8eb1c4abbf02012eae95026acd4abfea1674819..e3fd9102780e030810d12ff777e22194da6ab163 100644
|
| --- a/src/x64/assembler-x64.h
|
| +++ b/src/x64/assembler-x64.h
|
| @@ -1178,8 +1178,6 @@ class Assembler : public AssemblerBase {
|
| // but it may be bound only once.
|
|
|
| void bind(Label* L); // binds an unbound label L to the current code position
|
| - // DEPRECATED. Use bind(Label*) with jmp(Label*, Label::kNear) instead.
|
| - void bind(NearLabel* L);
|
|
|
| // Calls
|
| // Call near relative 32-bit displacement, relative to next instruction.
|
| @@ -1213,10 +1211,6 @@ class Assembler : public AssemblerBase {
|
| // Jump near absolute indirect (m64)
|
| void jmp(const Operand& src);
|
|
|
| - // Short jump
|
| - // DEPRECATED. Use jmp(L, Label::kNear) instead.
|
| - void jmp(NearLabel* L);
|
| -
|
| // Conditional jumps
|
| void j(Condition cc,
|
| Label* L,
|
| @@ -1227,10 +1221,6 @@ class Assembler : public AssemblerBase {
|
| }
|
| void j(Condition cc, Handle<Code> target, RelocInfo::Mode rmode);
|
|
|
| - // Conditional short jump
|
| - // DEPRECATED. Use jmp(L, Label::kNear) instead.
|
| - void j(Condition cc, NearLabel* L, Hint hint = no_hint);
|
| -
|
| // Floating-point operations
|
| void fld(int i);
|
|
|
|
|