mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 16:35:41 +01:00
Get back -Wsigned-one-bit-field and fix sources according to it
Signed-off-by: makise-homura <akemi_homura@kurisa.ch>
This commit is contained in:
parent
0be6aa9957
commit
e74f372330
@ -175,10 +175,6 @@ if(CMAKE_COMPILER_IS_GNU)
|
|||||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wformat-signedness")
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wformat-signedness")
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
CHECK_C_COMPILER_FLAG("-Wno-signed-one-bit-field" C_COMPILER_SUPPORTS_WSIGNED_ONE_BIT_FIELD)
|
|
||||||
if(C_COMPILER_SUPPORTS_WSIGNED_ONE_BIT_FIELD)
|
|
||||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-signed-one-bit-field")
|
|
||||||
endif()
|
|
||||||
set(CMAKE_C_FLAGS_RELEASE "-O2")
|
set(CMAKE_C_FLAGS_RELEASE "-O2")
|
||||||
set(CMAKE_C_FLAGS_DEBUG "-O0 -g3")
|
set(CMAKE_C_FLAGS_DEBUG "-O0 -g3")
|
||||||
set(CMAKE_C_FLAGS_COVERAGE "-O0 -g3 --coverage")
|
set(CMAKE_C_FLAGS_COVERAGE "-O0 -g3 --coverage")
|
||||||
|
@ -75,7 +75,7 @@
|
|||||||
/* A compile-time constant with the value 0. If `const_expr` is not a
|
/* A compile-time constant with the value 0. If `const_expr` is not a
|
||||||
* compile-time constant with a nonzero value, cause a compile-time error. */
|
* compile-time constant with a nonzero value, cause a compile-time error. */
|
||||||
#define STATIC_ASSERT_EXPR( const_expr ) \
|
#define STATIC_ASSERT_EXPR( const_expr ) \
|
||||||
( 0 && sizeof( struct { int STATIC_ASSERT : 1 - 2 * ! ( const_expr ); } ) )
|
( 0 && sizeof( struct { unsigned int STATIC_ASSERT : 1 - 2 * ! ( const_expr ); } ) )
|
||||||
/* Return the scalar value `value` (possibly promoted). This is a compile-time
|
/* Return the scalar value `value` (possibly promoted). This is a compile-time
|
||||||
* constant if `value` is. `condition` must be a compile-time constant.
|
* constant if `value` is. `condition` must be a compile-time constant.
|
||||||
* If `condition` is false, arrange to cause a compile-time error. */
|
* If `condition` is false, arrange to cause a compile-time error. */
|
||||||
|
Loading…
Reference in New Issue
Block a user