aboutsummaryrefslogtreecommitdiff
path: root/sim/frv
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2023-01-01 09:55:07 -0500
committerMike Frysinger <vapier@gentoo.org>2023-01-01 23:14:19 -0500
commit60a1031181a972a199fc64abddbdf9bcac20193a (patch)
tree8e8a6382b253ff67f63fcb3b2937f4d87006b289 /sim/frv
parent3002e78a7d3dba2cf2776cebfd5f2a9e53071b3e (diff)
downloadgdb-60a1031181a972a199fc64abddbdf9bcac20193a.zip
gdb-60a1031181a972a199fc64abddbdf9bcac20193a.tar.gz
gdb-60a1031181a972a199fc64abddbdf9bcac20193a.tar.bz2
sim: replace -I$srcroot/opcodes include with -I$srcroot
Clean up includes a bit by making ports include opcodes/ headers explicitly. This matches other projects, and makes it more clear where these headers are coming from.
Diffstat (limited to 'sim/frv')
-rw-r--r--sim/frv/profile.h2
-rw-r--r--sim/frv/sim-main.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/sim/frv/profile.h b/sim/frv/profile.h
index 051b015..8c29ed7 100644
--- a/sim/frv/profile.h
+++ b/sim/frv/profile.h
@@ -20,7 +20,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
#ifndef PROFILE_H
#define PROFILE_H
-#include "frv-desc.h"
+#include "opcodes/frv-desc.h"
/* This struct defines the state of profiling. All fields are of general
use to all machines. */
diff --git a/sim/frv/sim-main.h b/sim/frv/sim-main.h
index c292c64..f2fbcce 100644
--- a/sim/frv/sim-main.h
+++ b/sim/frv/sim-main.h
@@ -28,9 +28,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
#define WITH_SCACHE_PBB 0
#include "sim-basics.h"
-#include "frv-desc.h"
+#include "opcodes/frv-desc.h"
#include <stdbool.h>
-#include "frv-opc.h"
+#include "opcodes/frv-opc.h"
#include "arch.h"
#define SIM_ENGINE_HALT_HOOK(SD, LAST_CPU, CIA) \