diff options
author | Richard Henderson <rth@twiddle.net> | 2011-08-17 14:11:45 -0700 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2011-08-21 18:52:22 +0000 |
commit | 8399ad59e73a0f48af3edef62f021e2cb6220e12 (patch) | |
tree | bd7382f9e8574f1449cd36a8e00b86e6c3a2842f /tcg/tcg.c | |
parent | 4b29ec41c82a6e6c6a50263818e81944ef522fb2 (diff) | |
download | qemu-8399ad59e73a0f48af3edef62f021e2cb6220e12.tar.gz qemu-8399ad59e73a0f48af3edef62f021e2cb6220e12.tar.bz2 qemu-8399ad59e73a0f48af3edef62f021e2cb6220e12.zip |
tcg: Add and use TCG_OPF_64BIT.
This allows the simplification of the op_bits function from
tcg/optimize.c.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'tcg/tcg.c')
-rw-r--r-- | tcg/tcg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -68,7 +68,7 @@ static void tcg_target_qemu_prologue(TCGContext *s); static void patch_reloc(uint8_t *code_ptr, int type, tcg_target_long value, tcg_target_long addend); -static TCGOpDef tcg_op_defs[] = { +TCGOpDef tcg_op_defs[] = { #define DEF(s, oargs, iargs, cargs, flags) { #s, oargs, iargs, cargs, iargs + oargs + cargs, flags }, #include "tcg-opc.h" #undef DEF |