mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
target/riscv: Include missing headers in 'internals.h'
Rather than relying on implicit includes, explicit them, in order to avoid when refactoring unrelated headers: target/riscv/internals.h:49:15: error: use of undeclared identifier 'PRV_S' 49 | ret = PRV_S; | ^ target/riscv/internals.h:93:9: error: call to undeclared function 'env_archcpu'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration] 93 | if (env_archcpu(env)->cfg.ext_zfinx) { | ^ target/riscv/internals.h:101:15: error: unknown type name 'float32'; did you mean 'float'? 101 | static inline float32 check_nanbox_s(CPURISCVState *env, uint64_t f) | ^~~~~~~ | float Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Reviewed-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com> Message-ID: <20241203200828.47311-3-philmd@linaro.org> Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
This commit is contained in:
parent
04480a0e22
commit
fcea54c212
1 changed files with 3 additions and 0 deletions
|
@ -19,7 +19,10 @@
|
|||
#ifndef RISCV_CPU_INTERNALS_H
|
||||
#define RISCV_CPU_INTERNALS_H
|
||||
|
||||
#include "exec/cpu-common.h"
|
||||
#include "hw/registerfields.h"
|
||||
#include "fpu/softfloat-types.h"
|
||||
#include "target/riscv/cpu_bits.h"
|
||||
|
||||
/*
|
||||
* The current MMU Modes are:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue