diff options
author | Aurelien Jarno <aurelien@aurel32.net> | 2010-06-03 19:40:04 +0200 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2010-06-09 16:10:50 +0200 |
commit | c61aaf7a388c4ad95d8b546fdb9267dc01183317 (patch) | |
tree | 6a10e73f3d429b0d66e4ab637fdfb449ba60dcad /tcg/tcg.h | |
parent | 239fda311a6f7784bc4f732795722c909b835651 (diff) |
tcg: get rid of DEF2 in tcg-opc.h
Now that tcg-opc.h is only used in TCG code, get rid of DEF2 in
tcg-opc.h.
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'tcg/tcg.h')
-rw-r--r-- | tcg/tcg.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -48,7 +48,7 @@ typedef uint64_t TCGRegSet; #endif typedef enum TCGOpcode { -#define DEF(s, n) INDEX_op_ ## s, +#define DEF(name, oargs, iargs, cargs, flags) INDEX_op_ ## name, #include "tcg-opc.h" #undef DEF NB_OPS, |