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:
parent
9fc5b9d958
commit
4396d0e99f
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user