Bug in pointer casting

Gilbert Ramirez gram@xiexie.org
Thu Jul 1 14:15:00 GMT 1999


I am using egcs-2.91.66 on Linux 2.2.5, on a PII machine. (Stock RedHat
6.0 installation)

In compiling some code, I have encountered an "internal compiler error"
when casting a void pointer to a pointer to a function taking one
argument and returning void. This happens inside a template class.

I have created a small test file isolating just that one bug.

I invoked egcs via 'egcs -c test.cpp'. The test.cpp file is copied here.
The error is reported for the line with the comment.

------------------------------------------------------
template<class T>
class cb {
	public:
		cb(void*, T);

	void 	*ptr;
	T	val;

	void	operator()(void);
};

template<class T>
cb<T>::cb(void *f, T a)
{
	ptr = f;
	val = a;
}

template<class T>
void cb<T>::operator()(void)
{
	void (*callback)(T) = (void (*)(T)) ptr; /* <-------- */
	callback(val);
}

template cb<int>;
------------------------------------------------------

When invoking egcs with '-v', I get this:

Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/specs
gcc version egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)
 /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/cpp -lang-c++ -v -undef
-D__GNUC__=2 -D__GNUG__=2 -D__cplusplus -D__GNUC_MINOR__=91 -D__ELF__
-Dunix -Di386 -D__i386__ -Dlinux -D__ELF__ -D__unix__ -D__i386__
-D__i386__ -D__linux__ -D__unix -D__i386 -D__linux -Asystem(posix)
-D__EXCEPTIONS -Asystem(unix) -Acpu(i386) -Amachine(i386) -Di386
-D__i386 -D__i386__ test.cpp test.ii
GNU CPP version egcs-2.91.66 19990314/Linux (egcs-1.1.2 release) (i386
Linux/ELF)
#include "..." search starts here:
#include <...> search starts here:
 /usr/include/g++-2
 /usr/i386-redhat-linux/include
 /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/include
 /usr/include
End of search list.
 /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/cc1plus test.ii -quiet
-dumpbase test.cc -version -o test.s
GNU C++ version egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)
(i386-redhat-linux) compiled by GNU C version egcs-2.91.66
19990314/Linux (egcs-1.1.2 release).
test.cpp: In method `void cb<int>::operator ()<int>()':
test.cpp:28:   instantiated from here
test.cpp:23: Internal compiler error.
test.cpp:23: Please submit a full bug report to
`egcs-bugs@egcs.cygnus.com'.
test.cpp:23: See <URL: http://egcs.cygnus.com/faq.html#bugreport > for
details.


Both test.cpp and test.ii are attached to this e-mail.

--gilbert


More information about the Gcc-bugs mailing list