Use -fno-align-functions to really disable function alignment (a value of 0

used the default alignment, e.g. 16 bytes on x86_64). This is purely cosmetics
and only helps reading the resulting disassembly.
This commit is contained in:
gbeauche 2006-07-06 00:07:47 +00:00
parent d5bd143e40
commit d0a64733ef

View File

@ -1414,7 +1414,7 @@ if [[ "x$EMULATED_PPC" = "xyes" ]]; then
x*) have_dyngen_gcc3=yes ;;
esac
if [[ "x$have_dyngen_gcc3" = "xyes" ]]; then
DYNGEN_OP_FLAGS="$DYNGEN_OP_FLAGS -falign-functions=0"
DYNGEN_OP_FLAGS="$DYNGEN_OP_FLAGS -fno-align-functions"
else
DYNGEN_OP_FLAGS="$DYNGEN_OP_FLAGS -malign-functions=0"
fi