public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: Gilbert Ramirez <gram@xiexie.org>
To: egcs-bugs@egcs.cygnus.com
Subject: Bug in pointer casting
Date: Sat, 31 Jul 1999 23:33:00 -0000	[thread overview]
Message-ID: <19990701161515.E7795@tivoli.com> (raw)

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
>From dave@hiauly1.hia.nrc.ca Sat Jul 31 23:33:00 1999
From: "John David Anglin" <dave@hiauly1.hia.nrc.ca>
To: egcs-bugs@egcs.cygnus.com
Subject: Internal compiler error - pa.md
Date: Sat, 31 Jul 1999 23:33:00 -0000
Message-id: <199907311826.OAA21450@hiauly1.hia.nrc.ca>
X-SW-Source: 1999-07n/msg00950.html
Content-length: 690

In the current mainline, the following error occurs:

./genattr ../../gcc/config/pa/pa.md > tmp-attr.h
Expected character ".  Found character [.  At file position: 48803
Following characters are:
	(set_attr "type" "load")
   (set_attr "length" "4")])

;; Always use addil rather than ldil;add sequences.  This allows the
;; HP linker to eliminate the dp relocation if the symbolic operand
;; livesAborting.
genattr: Internal compiler error in `dump_and_abort', at ../../gcc/rtl.c:539

Looks like a missing "" in instruction definition.

-- 
J. David Anglin                                  dave.anglin@nrc.ca
National Research Council of Canada              (613) 990-0752 (FAX: 952-6605)


             reply	other threads:[~1999-07-31 23:33 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1999-07-31 23:33 Gilbert Ramirez [this message]
1999-07-01 21:24 ` Alexandre Oliva

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=19990701161515.E7795@tivoli.com \
    --to=gram@xiexie.org \
    --cc=egcs-bugs@egcs.cygnus.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).