ref: 5fe9a5c64918795df262455f67d567aa12975780
parent: 3e0793b80bfe94faf9b31f0f14c339c00ed78282
author: James Zern <jzern@google.com>
date: Wed Dec 10 13:42:07 EST 2014
don't set INLINE to 'always_inline' INLINE is used quite widely in vp9, this change improves performance 1-2% on most modern platforms. Change-Id: I8a9974aab89fa588ea4923cc7eaf6199e344a528
--- a/build/make/configure.sh
+++ b/build/make/configure.sh
@@ -1272,9 +1272,6 @@
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
--
⑨