aboutsummaryrefslogtreecommitdiff
path: root/Rules.mak
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-03-03 17:57:50 +0000
committerRob Landley <rob@landley.net>2006-03-03 17:57:50 +0000
commitc05dda4b2dfe8893c751c39469ef14d690c354ac (patch)
treebf8d0b29d3bea9ae6a5a2ddb105ef0d1b49a823b /Rules.mak
parent7ad83b4e2ce8300fa1fb6506f9b47d75669fe917 (diff)
downloadbusybox-c05dda4b2dfe8893c751c39469ef14d690c354ac.tar.gz
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.
Diffstat (limited to 'Rules.mak')
-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),\
# gcc-4.0 and older seem to suffer from these
$(if $(call cc_le,4,0),\
$(call check_gcc,OPTIMIZATIONS,-mpreferred-stack-boundary=2,)\
- $(call check_gcc,OPTIMIZATIONS,-falign-functions=0 -falign-jumps=0 -falign-loops=0,\
+ $(call check_gcc,OPTIMIZATIONS,-falign-functions=1 -falign-jumps=1 -falign-loops=1,\
-malign-functions=0 -malign-jumps=0 -malign-loops=0))
# gcc-4.1 and beyond seem to benefit from these