From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 99661 invoked by alias); 29 Aug 2018 14:18:57 -0000 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 Received: (qmail 99543 invoked by uid 89); 29 Aug 2018 14:18:56 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-24.9 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,SPF_PASS autolearn=ham version=3.3.2 spammy= X-HELO: jocasta.intra Received: from de.cellform.com (HELO jocasta.intra) (88.217.224.109) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 29 Aug 2018 14:18:55 +0000 Received: from jocasta.intra (localhost [127.0.0.1]) by jocasta.intra (8.15.2/8.15.2/Debian-8) with ESMTPS id w7TEIqb2026448 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Wed, 29 Aug 2018 16:18:52 +0200 Received: (from john@localhost) by jocasta.intra (8.15.2/8.15.2/Submit) id w7TEIqVJ026447; Wed, 29 Aug 2018 16:18:52 +0200 From: John Darrington To: gdb-patches@sourceware.org Cc: John Darrington Subject: [PATCH 2/4] Add a dwarf unit type to represent 24 bit values. Date: Wed, 29 Aug 2018 14:19:00 -0000 Message-Id: <20180829141845.26378-3-john@darrington.wattle.id.au> In-Reply-To: <20180829141845.26378-1-john@darrington.wattle.id.au> References: <20180829141845.26378-1-john@darrington.wattle.id.au> X-SW-Source: 2018-08/txt/msg00734.txt.bz2 * include/dwarf2.h (enum dwarf_unit_type) [DE_EH_PE_udata3]: New member. --- include/dwarf2.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/dwarf2.h b/include/dwarf2.h index cf0039a92a..0fe88a3a7e 100644 --- a/include/dwarf2.h +++ b/include/dwarf2.h @@ -474,6 +474,7 @@ enum dwarf_unit_type #define DW_EH_PE_udata2 0x02 #define DW_EH_PE_udata4 0x03 #define DW_EH_PE_udata8 0x04 +#define DW_EH_PE_udata3 0x05 #define DW_EH_PE_sleb128 0x09 #define DW_EH_PE_sdata2 0x0A #define DW_EH_PE_sdata4 0x0B -- 2.11.0