mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-26 16:18:31 +00:00
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
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=98573
@ -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