[PATCH] ARM: LLVMLinux: Change "extern inline" to "static inline" in glue-cache.h

2014-03-22 Thread behanw
From: Behan Webster With compilers which follow the C99 standard (like modern versions of gcc and clang), "extern inline" does the wrong thing (emits code for an externally linkable version of the inline function). "static inline" is the correct choice instead. Author: Behan Webster

[PATCH] ARM: LLVMLinux: Change extern inline to static inline in glue-cache.h

2014-03-22 Thread behanw
From: Behan Webster beh...@converseincode.com With compilers which follow the C99 standard (like modern versions of gcc and clang), extern inline does the wrong thing (emits code for an externally linkable version of the inline function). static inline is the correct choice instead. Author: