don't set INLINE to 'always_inline'
authorJames Zern <jzern@google.com>
Thu, 11 Dec 2014 02:42:07 +0000 (18:42 -0800)
committerJames Zern <jzern@google.com>
Fri, 12 Dec 2014 19:18:00 +0000 (11:18 -0800)
INLINE is used quite widely in vp9, this change improves performance
1-2% on most modern platforms.

Change-Id: I8a9974aab89fa588ea4923cc7eaf6199e344a528

build/make/configure.sh

index 7be583d..f980180 100644 (file)
@@ -1272,9 +1272,6 @@ EOF
     check_cc <<EOF && INLINE="inline"
 static inline function() {}
 EOF
-    check_cc <<EOF && INLINE="__inline__ __attribute__((always_inline))"
-static __attribute__((always_inline)) function() {}
-EOF
 
   # Almost every platform uses pthreads.
   if enabled multithread; then