[Spice-devel] [PATCH xf86-video-qxl v2 cleanup 6/6] murmurhash3: fix "always_inline function might not be inlinable" warning
Christophe Fergeau
cfergeau at redhat.com
Thu May 3 08:34:58 PDT 2012
ACK
Christophe
On Tue, Apr 24, 2012 at 12:21:27PM +0300, Alon Levy wrote:
> "__attribute__((always_inline))" does not replace "inline" and they
> still need to be used together. This fixes "always_inline function
> might not be inlinable [-Wattributes]" warning in gcc 4.7
> ---
> src/murmurhash3.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/src/murmurhash3.c b/src/murmurhash3.c
> index afb7d7d..a6d097a 100644
> --- a/src/murmurhash3.c
> +++ b/src/murmurhash3.c
> @@ -29,7 +29,7 @@
>
> #else // defined(_MSC_VER)
>
> -#define FORCE_INLINE __attribute__((always_inline))
> +#define FORCE_INLINE inline __attribute__((always_inline))
>
> static inline uint32_t rotl32 ( uint32_t x, int8_t r )
> {
> --
> 1.7.10
>
> _______________________________________________
> Spice-devel mailing list
> Spice-devel at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/spice-devel
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 198 bytes
Desc: not available
URL: <http://lists.freedesktop.org/archives/spice-devel/attachments/20120503/4715b6b2/attachment-0001.pgp>
More information about the Spice-devel
mailing list