mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 18:23:57 -06:00
tcg: Remove TCGV_EQUAL*
When we used structures for TCGv_*, we needed a macro in order to perform a comparison. Now that we use pointers, this is just clutter. Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Emilio G. Cota <cota@braap.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
dc41aa7d34
commit
11f4e8f8bf
6 changed files with 11 additions and 17 deletions
|
@ -58,7 +58,7 @@ static TCGv_i64 cpu_macc[4];
|
|||
#define QREG_SP get_areg(s, 7)
|
||||
|
||||
static TCGv NULL_QREG;
|
||||
#define IS_NULL_QREG(t) (TCGV_EQUAL(t, NULL_QREG))
|
||||
#define IS_NULL_QREG(t) (t == NULL_QREG)
|
||||
/* Used to distinguish stores from bad addressing modes. */
|
||||
static TCGv store_dummy;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue