From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12367 invoked by alias); 13 Oct 2009 07:29:35 -0000 Received: (qmail 12359 invoked by uid 22791); 13 Oct 2009 07:29:34 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL,BAYES_00,SARE_MSGID_LONG40,SPF_PASS X-Spam-Check-By: sourceware.org Received: from mail-pz0-f178.google.com (HELO mail-pz0-f178.google.com) (209.85.222.178) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 13 Oct 2009 07:29:30 +0000 Received: by pzk8 with SMTP id 8so1827840pzk.8 for ; Tue, 13 Oct 2009 00:29:28 -0700 (PDT) MIME-Version: 1.0 Received: by 10.140.177.7 with SMTP id z7mr625663rve.257.1255418968685; Tue, 13 Oct 2009 00:29:28 -0700 (PDT) Date: Tue, 13 Oct 2009 07:29:00 -0000 Message-ID: <3c75ef2e0910130029t7d0cab3ax5064f23001fcf662@mail.gmail.com> Subject: Error "pointer to unimplemented type" From: prashant rawat To: gcc-bugs@gcc.gnu.org Content-Type: text/plain; charset=ISO-8859-1 X-IsSubscribed: yes Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2009-10/txt/msg01099.txt.bz2 Hello, While trying to add a field 'tree * var_list' to struct cgraph_node (defined in cgraph.h), I got an error ../../gcc-4.3.1/gcc/cgraph.h:128: field `(*x).var_list' is pointer to unimplemented type ../../gcc-4.3.1/gcc/cgraph.h:128: field `(*x).var_list' is pointer to unimplemented type ../../gcc-4.3.1/gcc/cgraph.h:128: field `(*x).var_list' is pointer to unimplemented type make[3]: *** [s-gtype] Error 1 This happened all the times I tried adding a pointer-to-pointer type data structure in cgraph_node. The error is generated in line 2020 of file gengtype.c. Did anyone else notice the same problem? Is it a potential bug? Thanks!