https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65789
Bug ID: 65789 Summary: "cannot convert" calling convention Product: gcc Version: 4.9.2 Status: UNCONFIRMED Severity: minor Priority: P3 Component: c++ Assignee: unassigned at gcc dot gnu.org Reporter: puetzk at puetzk dot org Created attachment 35339 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=35339&action=edit example using a member function pointer - poor error message When the calling convention of a member function pointer does not match the calling convention of a member function pointer, the compiler reports the error but the message is unhelpful; it gives the exactly same description for both the input and output types, failing to mention the difference in calling convention. Conversions of a non-member (or static member) to an ordinary function pointer behave as expected, and mention the attribute. This is demonstrated by the two attached test-case files: * test-static.cpp (free function pointer) fails using the phrase "invalid conversion", which correctly identifies the difference * test-member.cpp (member function pointer) fails using the phrase "cannot convert", but gives identical descriptions of the input and output types. g++ -fsyntax-only test-static.cpp test-static.cpp: In function 'int main()': test-static.cpp:6:22: error: invalid conversion from 'void (__attribute__((__stdcall__)) *)()' to 'void (*)()' [-fpermissive] void (*f)() = &foo::bar; ^ g++ -fsyntax-only test-member.cpp test-member.cpp: In function 'int main()': test-member.cpp:6:27: error: cannot convert 'void (foo::*)()' to 'void (foo::*)()' in initialization void (foo::*f)() = &foo::bar; ^ gcc -v Using built-in specs. COLLECT_GCC=C:\projects\mingw32-4.9.2\bin\g++.exe COLLECT_LTO_WRAPPER=C:/projects/mingw32-4.9.2/bin/../libexec/gcc/i686-w64-mingw32/4.9.2/lto-wrapper.exe Target: i686-w64-mingw32 Configured with: ../../../src/gcc-4.9.2/configure --host=i686-w64-mingw32 --build=i686-w64-mingw32 --target=i686-w64-mingw32 --prefix=/mingw32 --with-sysroot=/c/mingw492/i686-492-win32-dwarf-rt_v3-rev1/mingw32 --with-gxx-include-dir=/mingw32/i686-w64-mingw32/include/c++ --enable-shared --enable-static --disable-multilib --enable-languages=ada,c,c++,fortran,objc,obj-c++,lto --enable-libstdcxx-time=yes --enable-threads=win32 --enable-libgomp --enable-libatomic --enable-lto --enable-graphite --enable-checking=release --enable-fully-dynamic-string --enable-version-specific-runtime-libs --disable-sjlj-exceptions --with-dwarf2 --disable-isl-version-check --disable-cloog-version-check --disable-libstdcxx-pch --disable-libstdcxx-debug --enable-bootstrap --disable-rpath --disable-win32-registry --disable-nls --disable-werror --disable-symvers --with-gnu-as --with-gnu-ld --with-arch=i686 --with-tune=generic --with-libiconv --with-system-zlib --with-gmp=/c/mingw492/prerequisites/i686-w64-mingw32-static --with-mpfr=/c/mingw492/prerequisites/i686-w64-mingw32-static --with-mpc=/c/mingw492/prerequisites/i686-w64-mingw32-static --with-isl=/c/mingw492/prerequisites/i686-w64-mingw32-static --with-cloog=/c/mingw492/prerequisites/i686-w64-mingw32-static --enable-cloog-backend=isl --with-pkgversion='i686-win32-dwarf-rev1, Built by MinGW-W64 project' --with-bugurl=http://sourceforge.net/projects/mingw-w64 CFLAGS='-O2 -pipe -I/c/mingw492/i686-492-win32-dwarf-rt_v3-rev1/mingw32/opt/include -I/c/mingw492/prerequisites/i686-zlib-static/include -I/c/mingw492/prerequisites/i686-w64-mingw32-static/include' CXXFLAGS='-O2 -pipe -I/c/mingw492/i686-492-win32-dwarf-rt_v3-rev1/mingw32/opt/include -I/c/mingw492/prerequisites/i686-zlib-static/include -I/c/mingw492/prerequisites/i686-w64-mingw32-static/include' CPPFLAGS= LDFLAGS='-pipe -L/c/mingw492/i686-492-win32-dwarf-rt_v3-rev1/mingw32/opt/lib -L/c/mingw492/prerequisites/i686-zlib-static/lib -L/c/mingw492/prerequisites/i686-w64-mingw32-static/lib -Wl ,--large-address-aware' Thread model: win32 gcc version 4.9.2 (i686-win32-dwarf-rev1, Built by MinGW-W64 project)