diff options
| author | Richard Henderson | 2020-10-29 23:00:18 +0100 |
|---|---|---|
| committer | Richard Henderson | 2021-01-07 16:09:42 +0100 |
| commit | f716bab3a9553259ff90505b3ddd245f4f8c4061 (patch) | |
| tree | 8cbe58ed77d7114dde27cbe71949b10b28abada7 /tcg | |
| parent | tcg/i386: Support split-wx code generation (diff) | |
| download | qemu-f716bab3a9553259ff90505b3ddd245f4f8c4061.tar.gz qemu-f716bab3a9553259ff90505b3ddd245f4f8c4061.tar.xz qemu-f716bab3a9553259ff90505b3ddd245f4f8c4061.zip | |
tcg/aarch64: Use B not BL for tcg_out_goto_long
A typo generated a branch-and-link insn instead of plain branch.
Reviewed-by: Joelle van Dyne <j@getutm.app>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg')
| -rw-r--r-- | tcg/aarch64/tcg-target.c.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tcg/aarch64/tcg-target.c.inc b/tcg/aarch64/tcg-target.c.inc index fea784cf75..bd888bc66d 100644 --- a/tcg/aarch64/tcg-target.c.inc +++ b/tcg/aarch64/tcg-target.c.inc @@ -1317,7 +1317,7 @@ static inline void tcg_out_goto_long(TCGContext *s, tcg_insn_unit *target) { ptrdiff_t offset = target - s->code_ptr; if (offset == sextract64(offset, 0, 26)) { - tcg_out_insn(s, 3206, BL, offset); + tcg_out_insn(s, 3206, B, offset); } else { tcg_out_movi(s, TCG_TYPE_I64, TCG_REG_TMP, (intptr_t)target); tcg_out_insn(s, 3207, BR, TCG_REG_TMP); |
