From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11484 invoked by alias); 9 Apr 2003 21:03:48 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 11476 invoked from network); 9 Apr 2003 21:03:46 -0000 Received: from unknown (HELO takamaka.act-europe.fr) (205.232.38.116) by sources.redhat.com with SMTP; 9 Apr 2003 21:03:46 -0000 Received: by takamaka.act-europe.fr (Postfix, from userid 507) id 68612D34B8; Wed, 9 Apr 2003 17:03:46 -0400 (EDT) Date: Wed, 09 Apr 2003 21:03:00 -0000 From: Joel Brobecker To: gdb-patches@sources.redhat.com Subject: [RFA] Add missing struct gdbarch opaque def to frame.h Message-ID: <20030409210346.GQ1170@gnat.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="9amGYk9869ThD9tj" Content-Disposition: inline User-Agent: Mutt/1.4i X-SW-Source: 2003-04/txt/msg00179.txt.bz2 --9amGYk9869ThD9tj Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 378 Hello, http://sources.redhat.com/ml/gdb-patches/2003-04/msg00173.html There is a compilation warning when building on LynxOS 4.0. The following patch fixes it. 2003-04-09 J. Brobecker * frame.h (struct gdbarch): Add opaque structure definition to avoid a compilation warning on LynxOS 4.0. Ok to apply, I guess? Thanks, -- Joel --9amGYk9869ThD9tj Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="frame.h.diff" Content-length: 501 Index: frame.h =================================================================== RCS file: /cvs/src/src/gdb/frame.h,v retrieving revision 1.85 diff -c -3 -p -r1.85 frame.h *** frame.h 6 Apr 2003 18:36:23 -0000 1.85 --- frame.h 9 Apr 2003 20:59:06 -0000 *************** struct symtab_and_line; *** 27,32 **** --- 27,33 ---- struct frame_unwind; struct frame_base; struct block; + struct gdbarch; /* A legacy unwinder to prop up architectures using the old style saved regs array. */ --9amGYk9869ThD9tj--