Chromium Code Reviews| Index: src/x64/assembler-x64.h |
| diff --git a/src/x64/assembler-x64.h b/src/x64/assembler-x64.h |
| index 5143bf3e66ba77ede12bfaf0fff995a3fc564907..0d98e5fe4aab49539c7e04dc50c9580bb7546c84 100644 |
| --- a/src/x64/assembler-x64.h |
| +++ b/src/x64/assembler-x64.h |
| @@ -82,8 +82,6 @@ struct Register { |
| } |
| bool is_valid() const { return 0 <= code_ && code_ < 16; } |
| bool is(Register reg) const { return code_ == reg.code_; } |
| - // The byte-register distinction of ai32 has dissapeared. |
|
William Hesse
2009/06/25 10:46:05
ia32
|
| - bool is_byte_register() const { return false; } |
| int code() const { |
| ASSERT(is_valid()); |
| return code_; |