Index: src/x64/assembler-x64-inl.h |
=================================================================== |
--- src/x64/assembler-x64-inl.h (revision 2222) |
+++ src/x64/assembler-x64-inl.h (working copy) |
@@ -123,7 +123,7 @@ |
void Assembler::emit_optional_rex_32(Register rm_reg) { |
- if (rm_reg.code() & 0x8 != 0) emit(0x41); |
+ if (rm_reg.code() > 0x7) emit(0x41); |
Lasse Reichstein
2009/06/19 09:03:24
I've used ">= 0x8" in other places. We really sho
|
} |