From 173452e46c732068255e8d1b0d5d055aa96c5018 Mon Sep 17 00:00:00 2001 From: Rhys Weatherley Date: Wed, 4 Aug 2004 06:59:22 +0000 Subject: [PATCH] Fix the operand types for "call_vtable_ptr". --- ChangeLog | 4 ++++ jit/jit-opcode.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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)}, -- 2.47.3