From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from rock.gnat.com (rock.gnat.com [205.232.38.15]) by sourceware.org (Postfix) with ESMTP id 64D4D3857802 for ; Sun, 15 Nov 2020 08:35:57 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 64D4D3857802 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=adacore.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=brobecke@adacore.com Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id BF48C5604A; Sun, 15 Nov 2020 03:35:56 -0500 (EST) X-Virus-Scanned: Debian amavisd-new at gnat.com Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id otL2VHMkiS+A; Sun, 15 Nov 2020 03:35:56 -0500 (EST) Received: from tron.gnat.com (tron.gnat.com [205.232.38.10]) by rock.gnat.com (Postfix) with ESMTP id AF38356011; Sun, 15 Nov 2020 03:35:56 -0500 (EST) Received: by tron.gnat.com (Postfix, from userid 4233) id A77E4111; Sun, 15 Nov 2020 03:35:56 -0500 (EST) From: Joel Brobecker To: gdb-patches@sourceware.org Cc: Simon Marchi Subject: pushed: Add support for DWARF-based fixed point types Date: Sun, 15 Nov 2020 03:35:36 -0500 Message-Id: <1605429345-78384-1-git-send-email-brobecker@adacore.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1604817017-25807-1-git-send-email-brobecker@adacore.com> References: <1604817017-25807-1-git-send-email-brobecker@adacore.com> X-Spam-Status: No, score=-3.8 required=5.0 tests=BAYES_00, KAM_DMARC_STATUS, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Nov 2020 08:35:58 -0000 Hi everyone, I just finished pusing the following patch series to branch master. - gdb/configure: Add --with-libgmp-prefix option - gdb: Make GMP a required dependency for building GDB - gmp-utils: New API to simply use of GMP's - Move uinteger_pow gdb/valarith.c to gdb/utils.c and - Add support for printing value of DWARF-based - fix printing of DWARF fixed-point type objects with - Add ptype support for DWARF-based fixed-point types - Add support for fixed-point type arithmetic - Add support for fixed-point type comparison operators The differences between what I pushed and what was sent for review is that I took care of all the suggestions that Simon made which were small and straightforward. I already replied to the various suggestions that made less sense to me. For the remaining suggestions, I decided to handle them as followup changes, which I have already implemented and will send for review momentarily. A big Thank You again to Simon for having taken the time to review the aptch series! -- Joel