From 642fc59b291c3704219d7175ff12bbd4f65d3014 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Mon, 26 Oct 2020 18:29:47 -0700 Subject: [PATCH] sim: Add a missing include to sim/syscall_abi.hh. This must have been included indirectly in the past. Change-Id: I8be3a11ca386e420f04d57e51a89c47e6a747e18 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/36616 Reviewed-by: Andreas Sandberg Maintainer: Andreas Sandberg Tested-by: kokoro --- src/sim/syscall_abi.hh | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sim/syscall_abi.hh b/src/sim/syscall_abi.hh index 529160868..984f0e025 100644 --- a/src/sim/syscall_abi.hh +++ b/src/sim/syscall_abi.hh @@ -28,6 +28,7 @@ #ifndef __SIM_SYSCALL_ABI_HH__ #define __SIM_SYSCALL_ABI_HH__ +#include "base/bitfield.hh" #include "base/types.hh" #include "cpu/thread_context.hh" #include "sim/guest_abi.hh" -- 2.30.2