opts.c (finish_options): Set opts->x_flag_opts_finished to true, not false.

* opts.c (finish_options): Set opts->x_flag_opts_finished to true,
	not false.

From-SVN: r168594
This commit is contained in:
Joseph Myers 2011-01-08 01:59:33 +00:00 committed by Joseph Myers
parent 96bdf9b403
commit b294a75eaf
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2011-01-07 Joseph Myers <joseph@codesourcery.com>
* opts.c (finish_options): Set opts->x_flag_opts_finished to true,
not false.
2011-01-07 Jan Hubicka <jh@suse.cz>
* doc/invoke.texi: (-flto, -fuse-linker-plugin): Update defaults

View File

@ -693,7 +693,7 @@ finish_options (struct gcc_options *opts, struct gcc_options *opts_set,
opts->x_flag_pic = opts->x_flag_pie;
if (opts->x_flag_pic && !opts->x_flag_pie)
opts->x_flag_shlib = 1;
opts->x_flag_opts_finished = false;
opts->x_flag_opts_finished = true;
}
if (opts->x_optimize == 0)