uClibc: update to latest version (rc3 + git changes), contains fixes for ipv6 dns...
[openwrt/svn-archive/archive.git] / target / linux / generic / patches-2.6.35 / 012-extra_optimization.patch
1 --- a/Makefile
2 +++ b/Makefile
3 @@ -532,7 +532,7 @@ all: vmlinux
4 ifdef CONFIG_CC_OPTIMIZE_FOR_SIZE
5 KBUILD_CFLAGS += -Os
6 else
7 -KBUILD_CFLAGS += -O2
8 +KBUILD_CFLAGS += -O2 -fno-reorder-blocks -fno-tree-ch
9 endif
10
11 include $(srctree)/arch/$(SRCARCH)/Makefile
12 @@ -570,6 +570,9 @@ endif
13 NOSTDINC_FLAGS += -nostdinc -isystem $(shell $(CC) -print-file-name=include)
14 CHECKFLAGS += $(NOSTDINC_FLAGS)
15
16 +# improve gcc optimization
17 +CFLAGS += $(call cc-option,-funit-at-a-time,)
18 +
19 # warn about C99 declaration after statement
20 KBUILD_CFLAGS += $(call cc-option,-Wdeclaration-after-statement,)
21