From 89b60bfba0413141e9209479c99669de1f8a432b Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Thu, 3 Jan 2008 19:16:29 -0700 Subject: [PATCH] fix incorrect encoding of neg instruction --- src/compiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler.cpp b/src/compiler.cpp index 3aabcc14d3..29a9b37b0c 100644 --- a/src/compiler.cpp +++ b/src/compiler.cpp @@ -1800,7 +1800,7 @@ MemoryOperand::apply(Context* c, Operation op) ax->release(c); dx->release(c); } else { - encode(c, 0xf7, 2, this, true); + encode(c, 0xf7, 3, this, true); } break;