From 1b4a43302d5d105dca3fc9194f540827465e0712 Mon Sep 17 00:00:00 2001 From: hap Date: Sat, 15 Mar 2025 19:00:34 +0100 Subject: [PATCH] softfloat: remove unused global LITTLEENDIAN/BIGENDIAN macros, as well as TRUE/FALSE macros --- 3rdparty/softfloat/mamesf.h | 9 --------- 3rdparty/softfloat/milieu.h | 6 ------ 2 files changed, 15 deletions(-) diff --git a/3rdparty/softfloat/mamesf.h b/3rdparty/softfloat/mamesf.h index 437f54834e3..08b03d55d75 100644 --- a/3rdparty/softfloat/mamesf.h +++ b/3rdparty/softfloat/mamesf.h @@ -1,12 +1,3 @@ -/*---------------------------------------------------------------------------- -| One of the macros `BIGENDIAN' or `LITTLEENDIAN' must be defined. -*----------------------------------------------------------------------------*/ -#ifdef LSB_FIRST -#define LITTLEENDIAN -#else -#define BIGENDIAN -#endif - /*---------------------------------------------------------------------------- | The macro `BITS64' can be defined to indicate that 64-bit integer types are | supported by the compiler. diff --git a/3rdparty/softfloat/milieu.h b/3rdparty/softfloat/milieu.h index 10687b755d0..523710d27f1 100644 --- a/3rdparty/softfloat/milieu.h +++ b/3rdparty/softfloat/milieu.h @@ -34,9 +34,3 @@ these four paragraphs for those parts of this code that are retained. | Include common integer types and flags. *----------------------------------------------------------------------------*/ #include "mamesf.h" - -/*---------------------------------------------------------------------------- -| Symbolic Boolean literals. -*----------------------------------------------------------------------------*/ -#define FALSE 0 -#define TRUE 1