Skip to content
Snippets Groups Projects
Commit 3673ad38 authored by Richard Henderson's avatar Richard Henderson
Browse files

tcg/tci: Fix MemOpIdx operand index for 3-operand memops


Cut and paste error from the 4-operand memops.

Fixes: ab64da79 ("tcg/tci: Adjust passing of MemOpIdx")
Signed-off-by: default avatarRichard Henderson <richard.henderson@linaro.org>
Reviewed-by: default avatarPhilippe Mathieu-Daudé <philmd@linaro.org>
Message-Id: <20230608162925.677598-1-richard.henderson@linaro.org>
parent 1026223c
No related branches found
No related tags found
No related merge requests found
......@@ -847,7 +847,7 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc,
if (TCG_TARGET_REG_BITS == 64) {
tcg_out_op_rrm(s, opc, args[0], args[1], args[2]);
} else {
tcg_out_movi(s, TCG_TYPE_I32, TCG_REG_TMP, args[4]);
tcg_out_movi(s, TCG_TYPE_I32, TCG_REG_TMP, args[3]);
tcg_out_op_rrrr(s, opc, args[0], args[1], args[2], TCG_REG_TMP);
}
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment