From 98a4c7cf3d799ab953cb77e8b34597c73e3e7335 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Thu, 4 Feb 2010 15:00:15 +0100 Subject: *: suppress ~60% of "aliased warnings" on gcc-4.4.1 Signed-off-by: Denys Vlasenko --- miscutils/crond.c | 2 +- miscutils/dc.c | 2 +- miscutils/hdparm.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'miscutils') diff --git a/miscutils/crond.c b/miscutils/crond.c index 7135e4475..ebd48121d 100644 --- a/miscutils/crond.c +++ b/miscutils/crond.c @@ -94,7 +94,7 @@ struct globals { char *env_var_user; char *env_var_home; #endif -}; +} FIX_ALIASING; #define G (*(struct globals*)&bb_common_bufsiz1) #define LogLevel (G.LogLevel ) #define LogFile (G.LogFile ) diff --git a/miscutils/dc.c b/miscutils/dc.c index 7348ed349..cb4b1e9b1 100644 --- a/miscutils/dc.c +++ b/miscutils/dc.c @@ -13,7 +13,7 @@ struct globals { unsigned pointer; unsigned base; double stack[1]; -}; +} FIX_ALIASING; enum { STACK_SIZE = (COMMON_BUFSIZE - offsetof(struct globals, stack)) / sizeof(double) }; #define G (*(struct globals*)&bb_common_bufsiz1) #define pointer (G.pointer ) diff --git a/miscutils/hdparm.c b/miscutils/hdparm.c index 399b77a4a..9738620fd 100644 --- a/miscutils/hdparm.c +++ b/miscutils/hdparm.c @@ -315,7 +315,7 @@ struct globals { #ifdef DO_FLUSHCACHE unsigned char flushcache[4] = { WIN_FLUSHCACHE, 0, 0, 0 }; #endif -}; +} FIX_ALIASING; #define G (*(struct globals*)&bb_common_bufsiz1) struct BUG_G_too_big { char BUG_G_too_big[sizeof(G) <= COMMON_BUFSIZE ? 1 : -1]; -- cgit v1.2.3