From 88b3cb570eff4441a7b5adda5622d39fc332e1dd Mon Sep 17 00:00:00 2001 From: grischka Date: Tue, 25 Mar 2008 20:58:37 +0000 Subject: [PATCH] Comply to c89 compilers other than gcc (Hanzac Chen) --- i386-asm.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/i386-asm.c b/i386-asm.c index 3d65c009..899e9d80 100644 --- a/i386-asm.c +++ b/i386-asm.c @@ -109,9 +109,12 @@ typedef struct Operand { } Operand; static const uint8_t reg_to_size[5] = { +/* [OP_REG8] = 0, [OP_REG16] = 1, [OP_REG32] = 2, +*/ + 0, 0, 1, 0, 2 }; #define WORD_PREFIX_OPCODE 0x66 -- 2.11.4.GIT