Browse Source

Add the nint argument to the copy_struct opcode.

cache-refactoring
Klaus Treichel 17 years ago
parent
commit
20fd0887a9
  1. 4
      ChangeLog
  2. 2
      jit/jit-opcode.c

4
ChangeLog

@ -1,3 +1,7 @@
2008-01-03 Klaus Treichel <ktreichel@web.de>
* jit/jit-opcode.c: Add the nint argument to the copy_struct opcode.
2007-12-31 Klaus Treichel <ktreichel@web.de>
* jit/jit-apply-x86-64.h: Swap source and destination for the call of

2
jit/jit-opcode.c

@ -446,7 +446,7 @@ jit_opcode_info_t const jit_opcodes[JIT_OP_NUM_OPCODES] = {
{"copy_float32", O_(FLOAT32, FLOAT32, EMPTY, COPY)},
{"copy_float64", O_(FLOAT64, FLOAT64, EMPTY, COPY)},
{"copy_nfloat", O_(NFLOAT, NFLOAT, EMPTY, COPY)},
{"copy_struct", O_(PTR, PTR, EMPTY, COPY)},
{"copy_struct", O_(PTR, PTR, EMPTY, COPY) | NINT_ARG},
{"copy_store_byte", F_(INT, INT, EMPTY)},
{"copy_store_short", F_(INT, INT, EMPTY)},
{"address_of", O_(PTR, ANY, EMPTY, ADDRESS_OF)},

Loading…
Cancel
Save