mirror of git://gcc.gnu.org/git/gcc.git
opts.c (finish_options): Remove duplicate sorry.
* opts.c (finish_options): Remove duplicate sorry. From-SVN: r182878
This commit is contained in:
parent
7ba6572377
commit
b6aa8c3385
|
@ -1,9 +1,6 @@
|
||||||
2012-01-04 Aldy Hernandez <aldyh@redhat.com>
|
2012-01-04 Aldy Hernandez <aldyh@redhat.com>
|
||||||
|
|
||||||
PR middle-end/51212
|
* opts.c (finish_options): Remove duplicate sorry.
|
||||||
* opts.c (finish_options): Sorry out when using transactional
|
|
||||||
memory and non-call exceptions.
|
|
||||||
* doc/invoke.texi (C Dialect Options): Document it.
|
|
||||||
|
|
||||||
2012-01-04 Aldy Hernandez <aldyh@redhat.com>
|
2012-01-04 Aldy Hernandez <aldyh@redhat.com>
|
||||||
|
|
||||||
|
|
|
@ -666,9 +666,6 @@ finish_options (struct gcc_options *opts, struct gcc_options *opts_set,
|
||||||
if (opts->x_flag_tm && opts->x_flag_non_call_exceptions)
|
if (opts->x_flag_tm && opts->x_flag_non_call_exceptions)
|
||||||
sorry ("transactional memory is not supported with non-call exceptions");
|
sorry ("transactional memory is not supported with non-call exceptions");
|
||||||
|
|
||||||
if (opts->x_flag_tm && opts->x_flag_non_call_exceptions)
|
|
||||||
sorry ("transactional memory is not supported with non-call exceptions");
|
|
||||||
|
|
||||||
/* -Wmissing-noreturn is alias for -Wsuggest-attribute=noreturn. */
|
/* -Wmissing-noreturn is alias for -Wsuggest-attribute=noreturn. */
|
||||||
if (opts->x_warn_missing_noreturn)
|
if (opts->x_warn_missing_noreturn)
|
||||||
opts->x_warn_suggest_attribute_noreturn = true;
|
opts->x_warn_suggest_attribute_noreturn = true;
|
||||||
|
|
Loading…
Reference in New Issue