cc -O0 and -O1 didn't do the easy optimization of alignment for space.

Instead it attempted to do the easy optimization of alignment for time,
which should be to 1-byte alignment on i386's.

Submitted by:	bde
This commit is contained in:
obrien 2002-06-21 18:21:30 +00:00
parent bf953252b2
commit a0b51ec56f

View File

@ -4746,7 +4746,7 @@ parse_options_and_default_flags (argc, argv)
flag_rename_registers = 1;
}
if (optimize < 2 || optimize_size)
if (optimize_size)
{
align_loops = 1;
align_jumps = 1;