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
bf953252b2
commit
a0b51ec56f
@ -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…
Reference in New Issue
Block a user