diff options
author | Stefan Weil <sw@weilnetz.de> | 2012-06-20 18:07:24 +0200 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> | 2012-06-22 10:34:21 +0100 |
commit | 6a69226f22011673dbce99d5e32cfeaad5bff426 (patch) | |
tree | d0614fbee30de5589f254a4d17f7efd133a8948a /tci.c | |
parent | 09faecf257387d88c457ca255d5c6a003a96623f (diff) |
tci: Support INDEX_op_bswap64_i64
Running the Windows 7 (64 bit) boot process needs INDEX_op_bswap64_i64.
It was already implemented, but untested. Remove the TODO() statement.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'tci.c')
-rw-r--r-- | tci.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -1014,7 +1014,6 @@ tcg_target_ulong tcg_qemu_tb_exec(CPUArchState *cpustate, uint8_t *tb_ptr) #endif #if TCG_TARGET_HAS_bswap64_i64 case INDEX_op_bswap64_i64: - TODO(); t0 = *tb_ptr++; t1 = tci_read_r64(&tb_ptr); tci_write_reg64(t0, bswap64(t1)); |