diff options
author | Stefan Weil <sw@weilnetz.de> | 2012-09-13 19:37:46 +0200 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2012-09-22 16:52:37 +0200 |
commit | 6e17d0c5cdf7b3d0086708ba1d2df931e18cb5b5 (patch) | |
tree | 03a4af69be9186becf0edbc231f86319ce9896b4 /tcg/hppa/tcg-target.c | |
parent | d73685e3c3936fd7851a32eff5443405cb5368be (diff) | |
download | hqemu-6e17d0c5cdf7b3d0086708ba1d2df931e18cb5b5.zip hqemu-6e17d0c5cdf7b3d0086708ba1d2df931e18cb5b5.tar.gz |
tcg: Remove tcg_target_get_call_iarg_regs_count
The TCG targets no longer need individual implementations.
Since commit 6a18ae2d2947532d5c26439548afa0481c4529f9,
'flags' is no longer used in tcg_target_get_call_iarg_regs_count.
The remaining tcg_target_get_call_iarg_regs_count is trivial and only
called once. Therefore the patch eliminates it completely.
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'tcg/hppa/tcg-target.c')
-rw-r--r-- | tcg/hppa/tcg-target.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/tcg/hppa/tcg-target.c b/tcg/hppa/tcg-target.c index 793b90d..2c79c10 100644 --- a/tcg/hppa/tcg-target.c +++ b/tcg/hppa/tcg-target.c @@ -175,12 +175,6 @@ static void patch_reloc(uint8_t *code_ptr, int type, *insn_ptr = insn; } -/* maximum number of register used for input function arguments */ -static inline int tcg_target_get_call_iarg_regs_count(int flags) -{ - return 4; -} - /* parse target specific constraints */ static int target_parse_constraint(TCGArgConstraint *ct, const char **pct_str) { |