aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-03-03 17:57:50 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-03-03 17:57:50 +0000
commitbb335214b98a0a5fed24eb6142c735fdfec48db9 (patch)
treebf8d0b29d3bea9ae6a5a2ddb105ef0d1b49a823b
parentbe3741206fe09ff9fe0e192bbdbe77f7aafd9fa6 (diff)
downloadbusybox-w32-bb335214b98a0a5fed24eb6142c735fdfec48db9.tar.gz
busybox-w32-bb335214b98a0a5fed24eb6142c735fdfec48db9.tar.bz2
busybox-w32-bb335214b98a0a5fed24eb6142c735fdfec48db9.zip
Denis Vlasenko noticed that falign=0 is meaningless, and that should probably
be falign=1. Saves a little over 3k on an x86 "make defconfig" build. git-svn-id: svn://busybox.net/trunk/busybox@14436 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--Rules.mak2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rules.mak b/Rules.mak
index 32ca312b9..1cab1f2fc 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -190,7 +190,7 @@ $(if $(call is_eq,$(__TARGET_ARCH),i386),\
190# gcc-4.0 and older seem to suffer from these 190# gcc-4.0 and older seem to suffer from these
191$(if $(call cc_le,4,0),\ 191$(if $(call cc_le,4,0),\
192 $(call check_gcc,OPTIMIZATIONS,-mpreferred-stack-boundary=2,)\ 192 $(call check_gcc,OPTIMIZATIONS,-mpreferred-stack-boundary=2,)\
193 $(call check_gcc,OPTIMIZATIONS,-falign-functions=0 -falign-jumps=0 -falign-loops=0,\ 193 $(call check_gcc,OPTIMIZATIONS,-falign-functions=1 -falign-jumps=1 -falign-loops=1,\
194 -malign-functions=0 -malign-jumps=0 -malign-loops=0)) 194 -malign-functions=0 -malign-jumps=0 -malign-loops=0))
195 195
196# gcc-4.1 and beyond seem to benefit from these 196# gcc-4.1 and beyond seem to benefit from these