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:
David E. O'Brien 2002-06-21 18:21:30 +00:00
parent 9fc5b9d958
commit 4396d0e99f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=98573

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;