]> git.proxmox.com Git - qemu.git/commitdiff
TCG: Fix compile breakage in tcg_dump_ops
authorAlexander Graf <agraf@suse.de>
Sat, 23 Jun 2012 22:05:36 +0000 (00:05 +0200)
committermalc <av1474@comtv.ru>
Sat, 23 Jun 2012 22:54:33 +0000 (02:54 +0400)
Commit eeacee4d865 changed the syntax of tcg_dump_ops, but didn't convert
all users (notably missing the ppc ones) to it. Fix them to the new syntax.

Signed-off-by: Alexander Graf <agraf@suse.de>
Signed-off-by: malc <av1474@comtv.ru>
tcg/ppc/tcg-target.c
tcg/ppc64/tcg-target.c

index d26569715b8a23fa006406d94193f93363dd6d91..0cff1812574e2df00078192c45b7ca4791b70ac2 100644 (file)
@@ -1865,7 +1865,7 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, const TCGArg *args,
         break;
 
     default:
-        tcg_dump_ops (s, stderr);
+        tcg_dump_ops (s);
         tcg_abort ();
     }
 }
index c800574588a3890b8eb08030158916a2b7ae97a0..27a0ae88ec4ac7dcdf73bb0c8469c17776ad617b 100644 (file)
@@ -1613,7 +1613,7 @@ static void tcg_out_op (TCGContext *s, TCGOpcode opc, const TCGArg *args,
         break;
 
     default:
-        tcg_dump_ops (s, stderr);
+        tcg_dump_ops (s);
         tcg_abort ();
     }
 }