diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2022-02-14 17:16:34 +0100 |
---|---|---|
committer | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2022-03-06 13:15:42 +0100 |
commit | a01bab6507fc240a1e1e2f2e456594fc6927c0a5 (patch) | |
tree | 7605329a758a7ff5d9c5693ede155fcd27cc2fbf /target | |
parent | 3cb1a410efb5d246862d7f1c135963fd0a688d70 (diff) |
target/hexagon: Add missing 'hw/core/cpu.h' include
HexagonCPU field parent_class is of type CPUClass, which
is declared in "hw/core/cpu.h".
Reviewed-by: Damien Hedde <damien.hedde@greensocs.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20220214183144.27402-11-f4bug@amsat.org>
Diffstat (limited to 'target')
-rw-r--r-- | target/hexagon/cpu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/hexagon/cpu.h b/target/hexagon/cpu.h index 096aa2deb6..76cd1d5021 100644 --- a/target/hexagon/cpu.h +++ b/target/hexagon/cpu.h @@ -27,6 +27,7 @@ typedef struct CPUHexagonState CPUHexagonState; #include "hex_regs.h" #include "mmvec/mmvec.h" #include "qom/object.h" +#include "hw/core/cpu.h" #define NUM_PREGS 4 #define TOTAL_PER_THREAD_REGS 64 |