Merge FreeBSD modifications into gcc 3.2.2 release:

1.11  -mno-align-long-strings.
Note the change 1.15 is not needed anymore.
This commit is contained in:
Alexander Kabaev 2003-02-10 06:04:35 +00:00
parent 6d114ccf45
commit c66fff0155
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=110628

View File

@ -928,7 +928,7 @@ override_options ()
if (flag_asynchronous_unwind_tables == 2)
flag_asynchronous_unwind_tables = 0;
if (flag_pcc_struct_return == 2)
flag_pcc_struct_return = 1;
flag_pcc_struct_return = DEFAULT_PCC_STRUCT_RETURN;
}
#ifdef SUBTARGET_OVERRIDE_OPTIONS
@ -1244,6 +1244,7 @@ optimization_options (level, size)
specifying them, we will set the defaults in override_options. */
if (optimize >= 1)
flag_omit_frame_pointer = 2;
flag_pcc_struct_return = 2;
flag_asynchronous_unwind_tables = 2;
}