mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
exec/translation-block: Include missing 'exec/vaddr.h' header
'vaddr' type is declared in "exec/vaddr.h". "exec/translation-block.h" uses this type without including the corresponding header. It works because this header is indirectly included, but won't work when the other headers are refactored: include/exec/translation-block.h:56:5: error: unknown type name 'vaddr' 56 | vaddr pc; | ^ Explitly include "exec/vaddr.h" to avoid such problem in a few commits. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20241114011310.3615-4-philmd@linaro.org>
This commit is contained in:
parent
600c63d4dc
commit
4081f5a698
1 changed files with 1 additions and 0 deletions
|
@ -9,6 +9,7 @@
|
|||
|
||||
#include "qemu/thread.h"
|
||||
#include "exec/cpu-common.h"
|
||||
#include "exec/vaddr.h"
|
||||
#ifdef CONFIG_USER_ONLY
|
||||
#include "qemu/interval-tree.h"
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue