79c4324644
Change-Id: I2d302dda68298877c65c99147f5bf22186a59aac
31 lines
985 B
Diff
31 lines
985 B
Diff
From 7eff40be327d0c591e4b842cd954ec5dabb75848 Mon Sep 17 00:00:00 2001
|
|
From: xianglai li <lixianglai@loongson.cn>
|
|
Date: Tue, 19 Dec 2023 02:34:39 -0500
|
|
Subject: [PATCH] revert "tcg/loongarch64: Fix tcg_out_mov() Aborted"
|
|
|
|
openEuler loongarch64 does not support qemu tcg,
|
|
so no TCG-related patch is required for synchronization.
|
|
|
|
Signed-off-by: xianglai li <lixianglai@loongson.cn>
|
|
---
|
|
tcg/loongarch64/tcg-target.c.inc | 3 ---
|
|
1 file changed, 3 deletions(-)
|
|
|
|
diff --git a/tcg/loongarch64/tcg-target.c.inc b/tcg/loongarch64/tcg-target.c.inc
|
|
index ee7d4d728d..0b28b30002 100644
|
|
--- a/tcg/loongarch64/tcg-target.c.inc
|
|
+++ b/tcg/loongarch64/tcg-target.c.inc
|
|
@@ -255,9 +255,6 @@ static bool tcg_out_mov(TCGContext *s, TCGType type, TCGReg ret, TCGReg arg)
|
|
*/
|
|
tcg_out_opc_or(s, ret, arg, TCG_REG_ZERO);
|
|
break;
|
|
- case TCG_TYPE_V128:
|
|
- tcg_out_opc_vori_b(s, ret, arg, 0);
|
|
- break;
|
|
default:
|
|
g_assert_not_reached();
|
|
}
|
|
--
|
|
2.27.0
|
|
|