From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23794 invoked by alias); 6 Oct 2008 20:26:12 -0000 Received: (qmail 23786 invoked by uid 22791); 6 Oct 2008 20:26:12 -0000 X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.31) with ESMTP; Mon, 06 Oct 2008 20:25:37 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id m96KKoV5027454; Mon, 6 Oct 2008 16:20:50 -0400 Received: from pobox.stuttgart.redhat.com (pobox.stuttgart.redhat.com [172.16.2.10]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id m96KKn4B018081; Mon, 6 Oct 2008 16:20:49 -0400 Received: from host0.dyn.jankratochvil.net (sebastian-int.corp.redhat.com [172.16.52.221]) by pobox.stuttgart.redhat.com (8.13.1/8.13.1) with ESMTP id m96KKlx0027281; Mon, 6 Oct 2008 16:20:48 -0400 Received: from host0.dyn.jankratochvil.net (localhost [127.0.0.1]) by host0.dyn.jankratochvil.net (8.14.3/8.14.2) with ESMTP id m96KKkHl011761; Mon, 6 Oct 2008 22:20:46 +0200 Received: (from jkratoch@localhost) by host0.dyn.jankratochvil.net (8.14.3/8.14.2/Submit) id m96KKi6B011758; Mon, 6 Oct 2008 22:20:44 +0200 Date: Mon, 06 Oct 2008 20:26:00 -0000 From: Jan Kratochvil To: Joel Brobecker Cc: gdb-patches@sourceware.org, Tobias Burnus , Ulrich Weigand , Jim Blandy , jimb@codesourcery.com Subject: Re: [patch] static_kind -> bit0, bit1 [Re: [gdb] Fortran dynamic arrays] Message-ID: <20081006202044.GA11510@host0.dyn.jankratochvil.net> References: <20080818111120.GE16894@adacore.com> <200808181553.m7IFrG3w005270@d12av02.megacenter.de.ibm.com> <48A59B3C.9050801@net-b.de> <20080818111120.GE16894@adacore.com> <20080907115637.GA12939@host0.dyn.jankratochvil.net> <20080919221221.GA23372@adacore.com> <20080926125754.GC21287@caradoc.them.org> <20081006200928.GD3588@adacore.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20081006200928.GD3588@adacore.com> User-Agent: Mutt/1.5.18 (2008-05-17) 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: 2008-10/txt/msg00157.txt.bz2 Hi, you were probably describing it already in your mail but more simply: SYMBOL_OPS can currently have only two values: dwarf2_loclist_funcs or dwarf2_locexpr_funcs. Which is moreover dependent on ENUM_BITFIELD(address_class). So the whole ops field has a useful size of 1 bit. In fact 0 bits as there can be LOC_COMPUTED_LOCLIST and LOC_COMPUTED_LOCEXPR instead of LOC_COMPUTED. But I would prefer to keep this part as a different patch. Thanks, Jan