]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
tcg: fix DEF macro after commit c61aaf7a388c4ad95d8b546fdb9267dc01183317
authorAurelien Jarno <aurelien@aurel32.net>
Fri, 11 Jun 2010 16:39:47 +0000 (18:39 +0200)
committerAurelien Jarno <aurelien@aurel32.net>
Fri, 11 Jun 2010 16:39:47 +0000 (18:39 +0200)
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
tcg/tcg.c

index 30b5106e19d9debd0809e4c14b1d3f274159a32c..3a18b76c8e20fddea89fe8191a0c3a09ed9db0f8 100644 (file)
--- a/tcg/tcg.c
+++ b/tcg/tcg.c
@@ -69,7 +69,7 @@ static void patch_reloc(uint8_t *code_ptr, int type,
                         tcg_target_long value, tcg_target_long addend);
 
 static TCGOpDef tcg_op_defs[] = {
-#define DEF(s, oargs, iargs, cargs, flags) { #s, oargs, iargs, cargs, iargs + oargs + cargs, flags, 0 },
+#define DEF(s, oargs, iargs, cargs, flags) { #s, oargs, iargs, cargs, iargs + oargs + cargs, flags },
 #include "tcg-opc.h"
 #undef DEF
 };