mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-13 07:56:17 +01:00
gtypes: Fix signedness of __builtin_bswap() usage
In GUINT64_TO_BE(), for example, when compiling with -Wsign-conversion, we get a warning due to an implicit cast from (gint64) to (guint64) when passing the argument to __builtin_bswap64(). According to the GCC documentation, __builtin_bswap64() takes an unsigned argument: https://gcc.gnu.org/onlinedocs/gcc/Other-Builtins.html Cast the input appropriately. Signed-off-by: Philip Withnall <withnall@endlessm.com> https://bugzilla.gnome.org/show_bug.cgi?id=788384
This commit is contained in:
parent
b0cbd21b25
commit
0e888bdf52
@ -181,8 +181,8 @@ typedef const gchar * (*GTranslateFunc) (const gchar *str,
|
||||
#if defined (__GNUC__) && (__GNUC__ >= 2) && defined (__OPTIMIZE__)
|
||||
|
||||
# if __GNUC__ >= 4 && defined (__GNUC_MINOR__) && __GNUC_MINOR__ >= 3
|
||||
# define GUINT32_SWAP_LE_BE(val) ((guint32) __builtin_bswap32 ((gint32) (val)))
|
||||
# define GUINT64_SWAP_LE_BE(val) ((guint64) __builtin_bswap64 ((gint64) (val)))
|
||||
# define GUINT32_SWAP_LE_BE(val) ((guint32) __builtin_bswap32 ((guint32) (val)))
|
||||
# define GUINT64_SWAP_LE_BE(val) ((guint64) __builtin_bswap64 ((guint64) (val)))
|
||||
# endif
|
||||
|
||||
# if defined (__i386__)
|
||||
|
Loading…
Reference in New Issue
Block a user