This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [3.4 PATCH] Fix PR c++/19666
- From: Paolo Carlini <pcarlini at suse dot de>
- To: Jakub Jelinek <jakub at redhat dot com>
- Cc: gcc-patches at gcc dot gnu dot org
- Date: Fri, 11 Feb 2005 11:16:34 +0100
- Subject: Re: [3.4 PATCH] Fix PR c++/19666
- References: <20050211095427.GF15935@devserv.devel.redhat.com>
Jakub Jelinek wrote:
- if (INTEGRAL_TYPE_P (type) || POINTER_TYPE_P (type))
+ if (INTEGRAL_TYPE_P (type) || POINTER_TYPE_P (type)
+ || TREE_CODE (type) == OFFSET_TYPE)
May I ask a naive, slightly OT question? Why there isn't an
OFFSET_TYPE_P predicate?
Thanks,
Paolo.