Makefile.mingw corrections and made the code pass much stricter checks (now mandated by Makefile.mignw) to ensure GCC 14 readiness.

This commit is contained in:
OBattler
2022-11-17 22:44:06 +01:00
parent 74eb753d59
commit 27ebb27db7
108 changed files with 682 additions and 680 deletions

View File

@@ -47,7 +47,7 @@ fpu_log(const char *fmt, ...)
#define X87_TAG_EMPTY 3
#ifdef USE_NEW_DYNAREC
uint16_t x87_gettag()
uint16_t x87_gettag(void)
{
uint16_t ret = 0;
int c;
@@ -84,7 +84,7 @@ void x87_settag(uint16_t new_tag)
}
}
#else
uint16_t x87_gettag()
uint16_t x87_gettag(void)
{
uint16_t ret = 0;
int c;
@@ -115,7 +115,7 @@ void x87_settag(uint16_t new_tag)
#ifdef ENABLE_808X_LOG
void x87_dumpregs()
void x87_dumpregs(void)
{
if (cpu_state.ismmx)
{