diff --git a/ChangeLog b/ChangeLog index 1867103..9fcb13e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,8 @@ +2004-08-04 Rhys Weatherley + + * jit/jit-opcode.c: fix the operand types for "call_vtable_ptr". + 2004-06-25 Rhys Weatherley * tools/gen-apply.c: fix a crash in gen-apply under x86-64. diff --git a/jit/jit-opcode.c b/jit/jit-opcode.c index ac0aa1e..698f9c3 100644 --- a/jit/jit-opcode.c +++ b/jit/jit-opcode.c @@ -402,7 +402,7 @@ jit_opcode_info_t const jit_opcodes[JIT_OP_NUM_OPCODES] = { {"call", JIT_OPCODE_IS_CALL}, {"call_tail", JIT_OPCODE_IS_CALL}, {"call_indirect", F_(EMPTY, PTR, EMPTY) | INDIRECT_ARGS}, - {"call_vtable_ptr", F_(EMPTY, PTR, EMPTY) | INDIRECT_ARGS}, + {"call_vtable_ptr", F_(EMPTY, PTR, EMPTY)}, {"call_external", JIT_OPCODE_IS_CALL_EXTERNAL}, {"return", F_(EMPTY, EMPTY, EMPTY)}, {"return_int", F_(EMPTY, INT, EMPTY)},