diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d01b88deeb42..961f895fe825 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,9 +1,6 @@ 2012-01-04 Aldy Hernandez - PR middle-end/51212 - * opts.c (finish_options): Sorry out when using transactional - memory and non-call exceptions. - * doc/invoke.texi (C Dialect Options): Document it. + * opts.c (finish_options): Remove duplicate sorry. 2012-01-04 Aldy Hernandez diff --git a/gcc/opts.c b/gcc/opts.c index 121cf69304b0..2ed556030eb2 100644 --- a/gcc/opts.c +++ b/gcc/opts.c @@ -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) 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. */ if (opts->x_warn_missing_noreturn) opts->x_warn_suggest_attribute_noreturn = true;