Commit 8cc1dc36 authored by Richard Levitte's avatar Richard Levitte
Browse files

Better error code when lacking __SIZEOF_INT128__

parent 04225915
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -45,7 +45,7 @@ NON_EMPTY_TRANSLATION_UNIT
typedef __uint128_t uint128_t;  /* nonstandard; implemented by gcc on 64-bit
                                 * platforms */
# else
#  error "Need GCC 4.0 or later to define type uint128_t"
#  error "Your compiler doesn't appear to support 128-bit integer types"
# endif

typedef uint8_t u8;
+1 −1
Original line number Diff line number Diff line
@@ -47,7 +47,7 @@ typedef __uint128_t uint128_t; /* nonstandard; implemented by gcc on 64-bit
                                 * platforms */
typedef __int128_t int128_t;
# else
#  error "Need GCC 4.0 or later to define type uint128_t"
#  error "Your compiler doesn't appear to support 128-bit integer types"
# endif

typedef uint8_t u8;
+1 −1
Original line number Diff line number Diff line
@@ -45,7 +45,7 @@ NON_EMPTY_TRANSLATION_UNIT
typedef __uint128_t uint128_t;  /* nonstandard; implemented by gcc on 64-bit
                                 * platforms */
# else
#  error "Need GCC 4.0 or later to define type uint128_t"
#  error "Your compiler doesn't appear to support 128-bit integer types"
# endif

typedef uint8_t u8;