提交 8cc1dc36 编写于 作者: R Richard Levitte

Better error code when lacking __SIZEOF_INT128__

Fixes #6327
Reviewed-by: NAndy Polyakov <appro@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/6328)
上级 04225915
......@@ -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;
......
......@@ -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;
......
......@@ -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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册