[Spice-devel] [PATCH xf86-video-qxl 03/13] murmurhash3: fix "always_inline function might not be inlinable" warning

Alon Levy alevy at redhat.com
Mon Apr 9 10:33:09 PDT 2012


"__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.9.3



More information about the Spice-devel mailing list