From: Stefan Weil Date: Wed, 28 Aug 2013 17:28:06 +0000 (+0200) Subject: tci: Remove function tcg_out64 (fix broken build) X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=a32b12741bf45bf3f46bffe5a79cb2548a060cd8;p=qemu.git tci: Remove function tcg_out64 (fix broken build) Commit ac26eb69a311396668809eadbf7ff4e623447d4c added tcg_out64 to tcg/tcg.c. tcg/tci/tcg-target.c already had a nearly identical implementation which is now removed to fix a compiler error. Signed-off-by: Stefan Weil Reviewed-by: Richard Henderson Signed-off-by: Michael Tokarev --- diff --git a/tcg/tci/tcg-target.c b/tcg/tci/tcg-target.c index e118bc7179..eb23832d7e 100644 --- a/tcg/tci/tcg-target.c +++ b/tcg/tci/tcg-target.c @@ -415,13 +415,6 @@ static void tcg_out_i(TCGContext *s, tcg_target_ulong v) s->code_ptr += sizeof(tcg_target_ulong); } -/* Write 64 bit value. */ -static void tcg_out64(TCGContext *s, uint64_t v) -{ - *(uint64_t *)s->code_ptr = v; - s->code_ptr += sizeof(v); -} - /* Write opcode. */ static void tcg_out_op_t(TCGContext *s, TCGOpcode op) {