Browse Source

Fix the operand types for "call_vtable_ptr".

cache-refactoring
Rhys Weatherley 21 years ago
parent
commit
173452e46c
  1. 4
      ChangeLog
  2. 2
      jit/jit-opcode.c

4
ChangeLog

@ -1,4 +1,8 @@
2004-08-04 Rhys Weatherley <rweather@southern-storm.com.au>
* jit/jit-opcode.c: fix the operand types for "call_vtable_ptr".
2004-06-25 Rhys Weatherley <rweather@southern-storm.com.au> 2004-06-25 Rhys Weatherley <rweather@southern-storm.com.au>
* tools/gen-apply.c: fix a crash in gen-apply under x86-64. * tools/gen-apply.c: fix a crash in gen-apply under x86-64.

2
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", JIT_OPCODE_IS_CALL},
{"call_tail", JIT_OPCODE_IS_CALL}, {"call_tail", JIT_OPCODE_IS_CALL},
{"call_indirect", F_(EMPTY, PTR, EMPTY) | INDIRECT_ARGS}, {"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}, {"call_external", JIT_OPCODE_IS_CALL_EXTERNAL},
{"return", F_(EMPTY, EMPTY, EMPTY)}, {"return", F_(EMPTY, EMPTY, EMPTY)},
{"return_int", F_(EMPTY, INT, EMPTY)}, {"return_int", F_(EMPTY, INT, EMPTY)},

Loading…
Cancel
Save