From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13987 invoked by alias); 24 Sep 2011 10:37:58 -0000 Received: (qmail 13977 invoked by uid 22791); 24 Sep 2011 10:37:58 -0000 X-SWARE-Spam-Status: No, hits=-2.4 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from mail-gy0-f169.google.com (HELO mail-gy0-f169.google.com) (209.85.160.169) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 24 Sep 2011 10:37:44 +0000 Received: by gya6 with SMTP id 6so3699363gya.0 for ; Sat, 24 Sep 2011 03:37:43 -0700 (PDT) MIME-Version: 1.0 Received: by 10.68.15.194 with SMTP id z2mr15789331pbc.47.1316860663316; Sat, 24 Sep 2011 03:37:43 -0700 (PDT) Received: by 10.143.147.12 with HTTP; Sat, 24 Sep 2011 03:37:43 -0700 (PDT) In-Reply-To: References: Date: Sat, 24 Sep 2011 10:44:00 -0000 Message-ID: Subject: Re: PING: [PATCH] Fixing parse errors in c-exp.y From: Abhijit Halder To: "gdb-patches@sourceware.org ml" Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2011-09/txt/msg00437.txt.bz2 On Sat, Sep 24, 2011 at 2:48 PM, Abhijit Halder wrote: > Hi all, > > This patch is about fixing parse error coming when gdb tries to parse > a pointer to a function pointer. e.g. (int)(**)(int) and the This is also a filed bug. (PR 9514). > associated problem, defined in PR 9837, which says wrong parsing when > pointers appear in function argument e.g. =A0(int)(*)(int*) > > Please review this. > > Thanks, > Abhijit Halder >