From caf2a8c9c955767b47b200ce4adb0215e1a16bce Mon Sep 17 00:00:00 2001 From: terminx Date: Fri, 21 Dec 2018 01:12:53 +0000 Subject: [PATCH] Re-enable -fno-strict-aliasing because apparently many versions of GCC across many platforms are still producing warning spew without it git-svn-id: https://svn.eduke32.com/eduke32@7297 1a8010ca-5511-0410-912e-c29ae57300e0 --- Common.mak | 2 +- source/build/include/compat.h | 12 ++---------- 2 files changed, 3 insertions(+), 11 deletions(-) diff --git a/Common.mak b/Common.mak index d84272f3b..3226d7f46 100644 --- a/Common.mak +++ b/Common.mak @@ -691,7 +691,7 @@ ifneq (0,$(KRANDDEBUG)) COMMONFLAGS += -fno-inline -fno-inline-functions -fno-inline-functions-called-once endif -COMMONFLAGS += -fno-threadsafe-statics $(F_JUMP_TABLES) $(F_NO_STACK_PROTECTOR) $(F_NO_STRICT_ALIASING) +COMMONFLAGS += -fno-strict-aliasing -fno-threadsafe-statics $(F_JUMP_TABLES) $(F_NO_STACK_PROTECTOR) ##### Warnings diff --git a/source/build/include/compat.h b/source/build/include/compat.h index 38c479a46..9b1227bbb 100644 --- a/source/build/include/compat.h +++ b/source/build/include/compat.h @@ -129,14 +129,6 @@ # define inline __inline #endif -#ifndef MAY_ALIAS -# ifdef _MSC_VER -# define MAY_ALIAS -# else -# define MAY_ALIAS __attribute__((may_alias)) -# endif -#endif - #ifndef FORCE_INLINE # ifdef _MSC_VER # define FORCE_INLINE __forceinline @@ -791,7 +783,7 @@ typedef reg_t unative_t; #endif EDUKE32_STATIC_ASSERT(sizeof(native_t) == sizeof(unative_t)); -typedef struct MAY_ALIAS { +typedef struct { int32_t x, y; } vec2_t; @@ -803,7 +795,7 @@ typedef struct { uint32_t x, y; } vec2u_t; -typedef struct MAY_ALIAS { +typedef struct { int32_t x, y, z; } vec3_t;