diff options
author | Richard Henderson <rth@twiddle.net> | 2013-09-18 15:08:52 -0700 |
---|---|---|
committer | Timothy Pearson <tpearson@raptorengineering.com> | 2019-11-29 19:34:37 -0600 |
commit | 66418622613568ed5d45fc8565c3fb815021c7e6 (patch) | |
tree | c4f5d8d98d34ccde79d3877daa0245f6150f6b6f /tcg | |
parent | 2dc926352397a900dcfa32f86f1afae7ed8e62ca (diff) | |
download | hqemu-66418622613568ed5d45fc8565c3fb815021c7e6.zip hqemu-66418622613568ed5d45fc8565c3fb815021c7e6.tar.gz |
tcg: Remove tcg_get_arg_str_i32/64
Reviewed-by: Aurelien Jarno <aurelien@aurel32.net>
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'tcg')
-rw-r--r-- | tcg/tcg.c | 10 | ||||
-rw-r--r-- | tcg/tcg.h | 5 |
2 files changed, 0 insertions, 15 deletions
@@ -928,16 +928,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) { @@ -663,11 +663,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) { |