[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 02/10] target/hexagon: Declare hexagon_regnames[] in "cpu.h"
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH 02/10] target/hexagon: Declare hexagon_regnames[] in "cpu.h" |
Date: |
Fri, 16 Dec 2022 23:05:31 +0100 |
The hexagon_regnames array has TOTAL_PER_THREAD_REGS elements.
TOTAL_PER_THREAD_REGS is defined in "cpu.h". Instead of pulling
"cpu.h" in "internal.h", move the hexagon_regnames[] declaration
to "cpu.h".
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
target/hexagon/cpu.h | 2 ++
target/hexagon/internal.h | 2 --
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/target/hexagon/cpu.h b/target/hexagon/cpu.h
index 2a65a57bab..9e8cd5a257 100644
--- a/target/hexagon/cpu.h
+++ b/target/hexagon/cpu.h
@@ -178,6 +178,8 @@ typedef HexagonCPU ArchCPU;
void hexagon_translate_init(void);
+extern const char * const hexagon_regnames[TOTAL_PER_THREAD_REGS];
+
#include "exec/cpu-all.h"
#endif /* HEXAGON_CPU_H */
diff --git a/target/hexagon/internal.h b/target/hexagon/internal.h
index b1bfadc3f5..1a6386e0ac 100644
--- a/target/hexagon/internal.h
+++ b/target/hexagon/internal.h
@@ -38,6 +38,4 @@ void hexagon_debug_vreg(CPUHexagonState *env, int regnum);
void hexagon_debug_qreg(CPUHexagonState *env, int regnum);
void hexagon_debug(CPUHexagonState *env);
-extern const char * const hexagon_regnames[TOTAL_PER_THREAD_REGS];
-
#endif
--
2.38.1