On Tue, 2 Jan 2007, Linus Torvalds wrote: > Traditionally, afaik, -Os has tended to show compiler problems that > _could_ happen with -O2 too, but never do in practice. It may be that > gcc-4.1 without -Os miscompiles some very unusual code, and then with -Os > we just hit more cases of that. >
gcc optimizations were almost completely rewritten between 3.4.6 and 4.1, and one of the subtle changes that may have been introduced is with regard to the heuristics used to determine whether to inline an 'inline' function or not when using -Os. This problem can show up in dynamic linking and break on certain architectures but should be detectable by using -Winline. David - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/