diff options
| author | Richard Henderson | 2019-03-16 18:48:18 +0100 |
|---|---|---|
| committer | Richard Henderson | 2019-05-13 23:44:03 +0200 |
| commit | 78113e83e0007e869c9f0cb4c0497a77538988e3 (patch) | |
| tree | 0a2fef8fc7bc6a291ebfcb18c729732d48fe0edc /tcg/aarch64 | |
| parent | tcg/arm: Use tcg_out_mov_reg in tcg_out_mov (diff) | |
| download | qemu-78113e83e0007e869c9f0cb4c0497a77538988e3.tar.gz qemu-78113e83e0007e869c9f0cb4c0497a77538988e3.tar.xz qemu-78113e83e0007e869c9f0cb4c0497a77538988e3.zip | |
tcg: Return bool success from tcg_out_mov
This patch merely changes the interface, aborting on all failures,
of which there are currently none.
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: David Hildenbrand <david@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/aarch64')
| -rw-r--r-- | tcg/aarch64/tcg-target.inc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tcg/aarch64/tcg-target.inc.c b/tcg/aarch64/tcg-target.inc.c index eefa929948..ee89734318 100644 --- a/tcg/aarch64/tcg-target.inc.c +++ b/tcg/aarch64/tcg-target.inc.c @@ -938,10 +938,10 @@ static void tcg_out_ldst(TCGContext *s, AArch64Insn insn, TCGReg rd, tcg_out_ldst_r(s, insn, rd, rn, TCG_TYPE_I64, TCG_REG_TMP); } -static void tcg_out_mov(TCGContext *s, TCGType type, TCGReg ret, TCGReg arg) +static bool tcg_out_mov(TCGContext *s, TCGType type, TCGReg ret, TCGReg arg) { if (ret == arg) { - return; + return true; } switch (type) { case TCG_TYPE_I32: @@ -970,6 +970,7 @@ static void tcg_out_mov(TCGContext *s, TCGType type, TCGReg ret, TCGReg arg) default: g_assert_not_reached(); } + return true; } static void tcg_out_ld(TCGContext *s, TCGType type, TCGReg ret, |
