public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Add -Winline
@ 2004-01-14  9:07 Andi Kleen
  2004-01-15 12:42 ` Adrian Bunk
  0 siblings, 1 reply; 4+ messages in thread
From: Andi Kleen @ 2004-01-14  9:07 UTC (permalink / raw)
  To: akpm; +Cc: linux-kernel, jh


Add -Winline by default. This makes the compiler warn when something
marked inline is not getting inlined. This is often because the 

It should only make a difference with gcc 3.4, because in earlier
compilers we use always_inline and not inlining with always_inline
is an error already.

--- linux-34/Makefile-o	2004-01-09 09:27:08.000000000 +0100
+++ linux-34/Makefile	2004-01-14 09:36:18.172866544 +0100
@@ -448,6 +449,9 @@
 # warn about C99 declaration after statement
 CFLAGS += $(call check_gcc,-Wdeclaration-after-statement,)
 
+# warn about impossible inlines
+CFLAGS += $(call check_gcc,-Winline,)
+
 #
 # INSTALL_PATH specifies where to place the updated kernel and system map
 # images.  Uncomment if you want to place them anywhere other than root.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2004-01-17  1:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-01-14  9:07 [PATCH] Add -Winline Andi Kleen
2004-01-15 12:42 ` Adrian Bunk
2004-01-15 12:55   ` Jan Hubicka
2004-01-17  1:12     ` Adrian Bunk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox