This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/11613] attribute unused after label causes error with g++


PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11613



------- Additional Comments From nathan at gcc dot gnu dot org  2003-07-23 17:17 -------
label: __attribute__ ((whatever))
cannot be well formed g++, because,
this is allowed
    __attribute__ ((unused)) int i;
and so is
    label:  int i;
so what does
    label: __attribute__ ((unused)) int i;
mean?


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]