diff options
Diffstat (limited to 'sim/aarch64')
-rw-r--r-- | sim/aarch64/ChangeLog | 7 | ||||
-rw-r--r-- | sim/aarch64/cpustate.c | 3 | ||||
-rw-r--r-- | sim/aarch64/cpustate.h | 1 | ||||
-rw-r--r-- | sim/aarch64/interp.c | 4 | ||||
-rw-r--r-- | sim/aarch64/memory.c | 4 | ||||
-rw-r--r-- | sim/aarch64/simulator.c | 4 | ||||
-rw-r--r-- | sim/aarch64/simulator.h | 1 |
7 files changed, 19 insertions, 5 deletions
diff --git a/sim/aarch64/ChangeLog b/sim/aarch64/ChangeLog index dc3eee2..b5ef612 100644 --- a/sim/aarch64/ChangeLog +++ b/sim/aarch64/ChangeLog @@ -1,5 +1,12 @@ 2021-05-16 Mike Frysinger <vapier@gentoo.org> + * cpustate.c: Include defs.h. + * interp.c: Replace config.h include with defs.h. + * memory.c, simulator.c: Likewise. + * cpustate.h, simulator.h: Delete config.h include. + +2021-05-16 Mike Frysinger <vapier@gentoo.org> + * config.in, configure: Regenerate. 2021-05-14 Mike Frysinger <vapier@gentoo.org> diff --git a/sim/aarch64/cpustate.c b/sim/aarch64/cpustate.c index f6b93fb..6007d74 100644 --- a/sim/aarch64/cpustate.c +++ b/sim/aarch64/cpustate.c @@ -19,6 +19,9 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ +/* This must come before any other includes. */ +#include "defs.h" + #include <stdio.h> #include <math.h> diff --git a/sim/aarch64/cpustate.h b/sim/aarch64/cpustate.h index c3f2637..b9e1f92 100644 --- a/sim/aarch64/cpustate.h +++ b/sim/aarch64/cpustate.h @@ -22,7 +22,6 @@ #ifndef _CPU_STATE_H #define _CPU_STATE_H -#include "config.h" #include <sys/types.h> #include <stdint.h> #include <inttypes.h> diff --git a/sim/aarch64/interp.c b/sim/aarch64/interp.c index cc3cf6a..fd35f4fa 100644 --- a/sim/aarch64/interp.c +++ b/sim/aarch64/interp.c @@ -19,7 +19,9 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "config.h" +/* This must come before any other includes. */ +#include "defs.h" + #include <stdio.h> #include <assert.h> #include <signal.h> diff --git a/sim/aarch64/memory.c b/sim/aarch64/memory.c index aa2f2e5..22caf61 100644 --- a/sim/aarch64/memory.c +++ b/sim/aarch64/memory.c @@ -19,7 +19,9 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "config.h" +/* This must come before any other includes. */ +#include "defs.h" + #include <sys/types.h> #include <stdio.h> #include <stdlib.h> diff --git a/sim/aarch64/simulator.c b/sim/aarch64/simulator.c index a839121..be1c298 100644 --- a/sim/aarch64/simulator.c +++ b/sim/aarch64/simulator.c @@ -19,7 +19,9 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "config.h" +/* This must come before any other includes. */ +#include "defs.h" + #include <stdlib.h> #include <stdio.h> #include <string.h> diff --git a/sim/aarch64/simulator.h b/sim/aarch64/simulator.h index f80e1f2..5875c84 100644 --- a/sim/aarch64/simulator.h +++ b/sim/aarch64/simulator.h @@ -22,7 +22,6 @@ #ifndef _SIMULATOR_H #define _SIMULATOR_H -#include "config.h" #include <sys/types.h> #include <setjmp.h> |