sim: mn10300: tweak engine halt hook

The hook is a void func, so defining it to 0 triggers warnings,
and isn't really needed.
This commit is contained in:
Mike Frysinger
2021-06-05 23:10:14 -04:00
parent cfc6061bd8
commit dc3de083d5
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2021-06-09 Mike Frysinger <vapier@gentoo.org>
* sim-main.h (SIM_ENGINE_HALT_HOOK): Delete 0.
2021-06-08 Mike Frysinger <vapier@gentoo.org>
* Makefile.in: Replace $(IGEN) with $(IGEN_RUN) and ../igen/igen

View File

@ -22,7 +22,7 @@
#ifndef SIM_MAIN_H
#define SIM_MAIN_H
#define SIM_ENGINE_HALT_HOOK(SD,LAST_CPU,CIA) 0 /* disable this hook */
#define SIM_ENGINE_HALT_HOOK(SD,LAST_CPU,CIA) /* disable this hook */
#include "sim-basics.h"
#include "sim-signal.h"