Adjust SETcc instruction encoding on x86-64.
authorStas Boukarev <stassats@gmail.com>
Sat, 7 Sep 2013 05:48:35 +0000 (09:48 +0400)
committerStas Boukarev <stassats@gmail.com>
Sat, 7 Sep 2013 05:48:35 +0000 (09:48 +0400)
Avoid emitting REX for legacy registers.

src/compiler/x86-64/insts.lisp

index 442c485..554cb52 100644 (file)
 (define-instruction set (segment dst cond)
   (:printer cond-set ())
   (:emitter
-   (maybe-emit-rex-for-ea segment dst nil)
+   (maybe-emit-rex-for-ea segment dst nil :operand-size :byte)
    (emit-byte segment #b00001111)
    (emit-byte segment (dpb (conditional-opcode cond) (byte 4 0) #b10010000))
    (emit-ea segment dst #b000)))