diff options
author | Coywolf Qi Hunt <qiyong@fc-cn.com> | 2006-01-14 13:21:11 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-14 18:27:12 -0800 |
commit | 69c99ac17e2ee0eb45e2c9873e6e12d73260fc6b (patch) | |
tree | 9ea1f247f27f391e0867ed4e2e2c01bc2488b54a /init/main.c | |
parent | 3135806358e8d3d8ac61a13f58f148d0a98a7b9b (diff) | |
download | linux-3.10-69c99ac17e2ee0eb45e2c9873e6e12d73260fc6b.tar.gz linux-3.10-69c99ac17e2ee0eb45e2c9873e6e12d73260fc6b.tar.bz2 linux-3.10-69c99ac17e2ee0eb45e2c9873e6e12d73260fc6b.zip |
[PATCH] abandon gcc 295x main.c tidy
After abandon-gcc-295x.patch, this relocates the error-out-early comment.
Signed-off-by: Coywolf Qi Hunt <qiyong@fc-cn.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'init/main.c')
-rw-r--r-- | init/main.c | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/init/main.c b/init/main.c index e092b1979a9..7c79da57d3a 100644 --- a/init/main.c +++ b/init/main.c @@ -54,20 +54,18 @@ #include <asm/sections.h> #include <asm/cacheflush.h> -/* - * This is one of the first .c files built. Error out early - * if we have compiler trouble.. - */ - #ifdef CONFIG_X86_LOCAL_APIC #include <asm/smp.h> #endif /* - * Versions of gcc older than that listed below may actually compile - * and link okay, but the end product can have subtle run time bugs. - * To avoid associated bogus bug reports, we flatly refuse to compile - * with a gcc that is known to be too old from the very beginning. + * This is one of the first .c files built. Error out early if we have compiler + * trouble. + * + * Versions of gcc older than that listed below may actually compile and link + * okay, but the end product can have subtle run time bugs. To avoid associated + * bogus bug reports, we flatly refuse to compile with a gcc that is known to be + * too old from the very beginning. */ #if (__GNUC__ < 3) || (__GNUC__ == 3 && __GNUC_MINOR__ < 2) #error Sorry, your GCC is too old. It builds incorrect kernels. |