mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-09 20:32:04 +09:00
UPSTREAM: compiler, clang: properly override 'inline' for clang
Commitabb2ea7dfd("compiler, clang: suppress warning for unused static inline functions") just caused more warnings due to re-defining the 'inline' macro. So undef it before re-defining it, and also add the 'notrace' attribute like the gcc version that this is overriding does. Maybe this makes clang happier. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> (cherry picked from commit6d53cefb18) Signed-off-by: Greg Hackmann <ghackmann@google.com> Change-Id: Ie01b45583954c6104c854a3810e35c1171764e78
This commit is contained in:
committed by
Greg Hackmann
parent
79ec10f992
commit
f2ea3999ec
@@ -21,4 +21,5 @@
|
||||
* -Wunused-function. This turns out to avoid the need for complex #ifdef
|
||||
* directives. Suppress the warning in clang as well.
|
||||
*/
|
||||
#define inline inline __attribute__((unused))
|
||||
#undef inline
|
||||
#define inline inline __attribute__((unused)) notrace
|
||||
|
||||
Reference in New Issue
Block a user