diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-03-20 13:13:09 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-03-20 13:13:09 +0000 |
commit | 0f3a580c4fec98bd4612dce4d77a9ac53a669fd3 (patch) | |
tree | 37fa1325f3792e0f37171f522c5f61cf6a6caa4a /include | |
parent | 027271e5a94591da535187fa95d481a1fdbcd9dc (diff) | |
download | busybox-0f3a580c4fec98bd4612dce4d77a9ac53a669fd3.tar.gz |
gcc compat fix and warning suppression
by Joe Krahn <krahn AT niehs.nih.gov>
Diffstat (limited to 'include')
-rw-r--r-- | include/platform.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/platform.h b/include/platform.h index bfe631506..51934853b 100644 --- a/include/platform.h +++ b/include/platform.h @@ -52,7 +52,8 @@ # define ATTRIBUTE_NORETURN __attribute__ ((__noreturn__)) # define ATTRIBUTE_PACKED __attribute__ ((__packed__)) # define ATTRIBUTE_ALIGNED(m) __attribute__ ((__aligned__(m))) -# if __GNUC_PREREQ (3,0) +/* __NO_INLINE__: some gcc's do not honor inlining! :( */ +# if __GNUC_PREREQ (3,0) && !defined(__NO_INLINE__) # define ALWAYS_INLINE __attribute__ ((always_inline)) inline /* I've seen a toolchain where I needed __noinline__ instead of noinline */ # define NOINLINE __attribute__((__noinline__)) |