From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35661) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a9eiq-0006NV-Si for qemu-devel@nongnu.org; Thu, 17 Dec 2015 15:00:21 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a9eiq-0000Ex-2U for qemu-devel@nongnu.org; Thu, 17 Dec 2015 15:00:20 -0500 Received: from mail-oi0-x229.google.com ([2607:f8b0:4003:c06::229]:32813) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a9eip-0000Et-V0 for qemu-devel@nongnu.org; Thu, 17 Dec 2015 15:00:20 -0500 Received: by mail-oi0-x229.google.com with SMTP id y66so48825260oig.0 for ; Thu, 17 Dec 2015 12:00:19 -0800 (PST) Sender: Richard Henderson From: Richard Henderson Date: Thu, 17 Dec 2015 12:00:17 -0800 Message-Id: <1450382417-5744-1-git-send-email-rth@twiddle.net> In-Reply-To: <1450382320-5383-1-git-send-email-rth@twiddle.net> References: <1450382320-5383-1-git-send-email-rth@twiddle.net> Subject: [Qemu-devel] [PATCH v2 05/14] tcg: Remove tcg_get_arg_str_i32/64 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: mark.cave-ayland@ilande.co.uk, aurelien@aurel32.net Signed-off-by: Richard Henderson --- tcg/tcg.c | 10 ---------- tcg/tcg.h | 5 ----- 2 files changed, 15 deletions(-) diff --git a/tcg/tcg.c b/tcg/tcg.c index 06d71d7..b6cd85c 100644 --- a/tcg/tcg.c +++ b/tcg/tcg.c @@ -926,16 +926,6 @@ static char *tcg_get_arg_str_idx(TCGContext *s, char *buf, int buf_size, return buf; } -char *tcg_get_arg_str_i32(TCGContext *s, char *buf, int buf_size, TCGv_i32 arg) -{ - return tcg_get_arg_str_idx(s, buf, buf_size, GET_TCGV_I32(arg)); -} - -char *tcg_get_arg_str_i64(TCGContext *s, char *buf, int buf_size, TCGv_i64 arg) -{ - return tcg_get_arg_str_idx(s, buf, buf_size, GET_TCGV_I64(arg)); -} - /* Find helper name. */ static inline const char *tcg_find_helper(TCGContext *s, uintptr_t val) { diff --git a/tcg/tcg.h b/tcg/tcg.h index 3674739..223d9c6 100644 --- a/tcg/tcg.h +++ b/tcg/tcg.h @@ -641,11 +641,6 @@ TCGv_i64 tcg_temp_new_internal_i64(int temp_local); void tcg_temp_free_i32(TCGv_i32 arg); void tcg_temp_free_i64(TCGv_i64 arg); -char *tcg_get_arg_str_i32(TCGContext *s, char *buf, - int buf_size, TCGv_i32 arg); -char *tcg_get_arg_str_i64(TCGContext *s, char *buf, - int buf_size, TCGv_i64 arg); - static inline TCGv_i32 tcg_global_mem_new_i32(TCGv_ptr reg, intptr_t offset, const char *name) { -- 2.5.0