[Bug c++/67767] -Wsuggest-attribute=noreturn suggests noreturn for function which already has noreturn and cold.

2016-07-08 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67767 Jakub Jelinek changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug c++/67767] -Wsuggest-attribute=noreturn suggests noreturn for function which already has noreturn and cold.

2016-07-07 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67767 --- Comment #7 from Jakub Jelinek --- Author: jakub Date: Thu Jul 7 21:46:54 2016 New Revision: 238136 URL: https://gcc.gnu.org/viewcvs?rev=238136=gcc=rev Log: Backported from mainline 2016-02-19 Jakub Jelinek

[Bug c++/67767] -Wsuggest-attribute=noreturn suggests noreturn for function which already has noreturn and cold.

2016-03-30 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67767 --- Comment #6 from Jakub Jelinek --- Fixed for 5.4+ too.

[Bug c++/67767] -Wsuggest-attribute=noreturn suggests noreturn for function which already has noreturn and cold.

2016-03-30 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67767 --- Comment #5 from Jakub Jelinek --- Author: jakub Date: Wed Mar 30 12:31:21 2016 New Revision: 234551 URL: https://gcc.gnu.org/viewcvs?rev=234551=gcc=rev Log: Backported from mainline 2016-02-19 Jakub Jelinek

[Bug c++/67767] -Wsuggest-attribute=noreturn suggests noreturn for function which already has noreturn and cold.

2016-02-19 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67767 --- Comment #4 from Jakub Jelinek --- Author: jakub Date: Fri Feb 19 16:01:50 2016 New Revision: 233560 URL: https://gcc.gnu.org/viewcvs?rev=233560=gcc=rev Log: PR c++/67767 * parser.c (cp_parser_std_attribute_spec_seq): Don't

[Bug c++/67767] -Wsuggest-attribute=noreturn suggests noreturn for function which already has noreturn and cold.

2016-02-18 Thread jakub at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67767 Jakub Jelinek changed: What|Removed |Added Status|UNCONFIRMED |ASSIGNED Last reconfirmed|

[Bug c++/67767] -Wsuggest-attribute=noreturn suggests noreturn for function which already has noreturn and cold.

2016-02-17 Thread zerotype at yahoo dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67767 --- Comment #2 from zerotype at yahoo dot com --- This can be worked around by using: [[gnu::cold]] [[gnu::noreturn]] instead of [[gnu::cold, gnu::noreturn]]

[Bug c++/67767] -Wsuggest-attribute=noreturn suggests noreturn for function which already has noreturn and cold.

2015-09-29 Thread zerotype at yahoo dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67767 --- Comment #1 from zerotype at yahoo dot com --- This particular use case also challenges the assertion in the GCC documentation that "It does not make sense for a noreturn function to have a return type other than void.". Some of the function