[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 07/14] target/ppd: Remove unused define
From: |
BALATON Zoltan |
Subject: |
[PATCH v3 07/14] target/ppd: Remove unused define |
Date: |
Fri, 16 Jun 2023 01:03:16 +0200 (CEST) |
Commit 7a3fe174b12d removed usage of POWERPC_SYSCALL_VECTORED, drop
the unused define as well.
Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Nicholas Piggin <npiggin@gmail.com>
---
target/ppc/translate.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/target/ppc/translate.c b/target/ppc/translate.c
index b591f2e496..a32a9b8a5f 100644
--- a/target/ppc/translate.c
+++ b/target/ppc/translate.c
@@ -4416,7 +4416,6 @@ static void gen_hrfid(DisasContext *ctx)
#define POWERPC_SYSCALL POWERPC_EXCP_SYSCALL_USER
#else
#define POWERPC_SYSCALL POWERPC_EXCP_SYSCALL
-#define POWERPC_SYSCALL_VECTORED POWERPC_EXCP_SYSCALL_VECTORED
#endif
static void gen_sc(DisasContext *ctx)
{
--
2.30.9
- [PATCH v3 00/14] Misc clean ups to target/ppc exception handling, BALATON Zoltan, 2023/06/15
- [PATCH v3 01/14] target/ppc: Remove some superfluous parentheses, BALATON Zoltan, 2023/06/15
- [PATCH v3 05/14] target/ppc: Remove some more local CPUState variables only used once, BALATON Zoltan, 2023/06/15
- [PATCH v3 03/14] target/ppc: Move common check in exception handlers to a function, BALATON Zoltan, 2023/06/15
- [PATCH v3 04/14] target/ppc: Use env_cpu for cpu_abort in excp_helper, BALATON Zoltan, 2023/06/15
- [PATCH v3 07/14] target/ppd: Remove unused define,
BALATON Zoltan <=
- [PATCH v3 06/14] target/ppc: Readability improvements in exception handlers, BALATON Zoltan, 2023/06/15
- [PATCH v3 08/14] target/ppc: Fix gen_sc to use correct nip, BALATON Zoltan, 2023/06/15
- [PATCH v3 02/14] target/ppc: Remove unneeded parameter from powerpc_reset_wakeup(), BALATON Zoltan, 2023/06/15
- [PATCH v3 09/14] target/ppc: Move patching nip from exception handler to helper_scv, BALATON Zoltan, 2023/06/15