From 844841937f01800c8947c4e8d44b0942d3c21c11 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Wed, 30 Apr 2008 10:46:46 -0600 Subject: [PATCH] fix use of wrong constant in x86.cpp --- src/x86.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/x86.cpp b/src/x86.cpp index eddf5dfea7..db046f862b 100644 --- a/src/x86.cpp +++ b/src/x86.cpp @@ -3,7 +3,7 @@ using namespace vm; -#define INDEX1(a, b) ((a) + (BinaryOperationCount * (b))) +#define INDEX1(a, b) ((a) + (UnaryOperationCount * (b))) #define CAST1(x) reinterpret_cast(x)