mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-09 10:34:58 -06:00
tcg: Remove tcg_temp_local_new_*, tcg_const_local_*
These symbols are now unused. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
383f50f753
commit
438e685b1f
3 changed files with 0 additions and 46 deletions
16
tcg/tcg.c
16
tcg/tcg.c
|
@ -1475,22 +1475,6 @@ TCGv_i64 tcg_const_i64(int64_t val)
|
|||
return t0;
|
||||
}
|
||||
|
||||
TCGv_i32 tcg_const_local_i32(int32_t val)
|
||||
{
|
||||
TCGv_i32 t0;
|
||||
t0 = tcg_temp_local_new_i32();
|
||||
tcg_gen_movi_i32(t0, val);
|
||||
return t0;
|
||||
}
|
||||
|
||||
TCGv_i64 tcg_const_local_i64(int64_t val)
|
||||
{
|
||||
TCGv_i64 t0;
|
||||
t0 = tcg_temp_local_new_i64();
|
||||
tcg_gen_movi_i64(t0, val);
|
||||
return t0;
|
||||
}
|
||||
|
||||
#if defined(CONFIG_DEBUG_TCG)
|
||||
void tcg_clear_temp_count(void)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue