[Bug c++/29328] calling convention attributes not encoded in member function pointer

2021-07-22 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=29328 Andrew Pinski changed: What|Removed |Added CC||puetzk at puetzk dot org --- Comment #2

[Bug c++/29328] calling convention attributes not encoded in member function pointer

2006-10-04 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-10-05 04:56 --- Here is a shorter testcase which shows the problem: class X{}; void (X:: *b)(); void (__attribute((stdcall))X:: *c)() = b; This also can create wrong code too. -- pinskia at gcc dot gnu dot org changed: