From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 0) id 95612394880F; Sat, 21 Mar 2020 05:27:35 +0000 (GMT) Resent-From: Christopher Faylor Resent-Date: Sat, 21 Mar 2020 05:27:35 +0000 Resent-Message-ID: <20200321052735.GB59879@server2.sourceware.org> Resent-To: gdb-patches@sourceware.org Received: from gateway34.websitewelcome.com (gateway34.websitewelcome.com [192.185.148.194]) by sourceware.org (Postfix) with ESMTPS id 9DD6A385F02A for ; Fri, 20 Mar 2020 21:53:42 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 9DD6A385F02A Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=tromey.com Authentication-Results: sourceware.org; spf=fail smtp.mailfrom=tom@tromey.com Received: from cm13.websitewelcome.com (cm13.websitewelcome.com [100.42.49.6]) by gateway34.websitewelcome.com (Postfix) with ESMTP id 2F1C3FE3F1 for ; Fri, 20 Mar 2020 16:53:42 -0500 (CDT) Received: from box5379.bluehost.com ([162.241.216.53]) by cmsmtp with SMTP id FPaIjrgQOVQh0FPaIj6Uah; Fri, 20 Mar 2020 16:53:42 -0500 X-Authority-Reason: nr=8 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tromey.com; s=default; h=Message-Id:Date:Subject:To:From:Sender:Reply-To:Cc:MIME-Version :Content-Type:Content-Transfer-Encoding:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: In-Reply-To:References:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=CF2x13wieDYXcjOZdd9aWpkzsS9Xlz+rZdHU6IWottE=; b=Lwwd3T8y8F2WGbRVzGkMcik4JQ TQfdYbHiwF/nsZgSq0eQXG6lOEBLuSeCfcA7g2GyBB6cWLDgtXjrOj2L5kESdJX5pRrOWYHViSV+o SigYGIbLZQtMXArgC3vahZ7gx; Received: from 97-118-117-21.hlrn.qwest.net ([97.118.117.21]:35792 helo=bapiya.Home) by box5379.bluehost.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.92) (envelope-from ) id 1jFPaI-003c6k-0Y for gdb-patches@sourceware.org; Fri, 20 Mar 2020 15:53:42 -0600 From: Tom Tromey To: gdb-patches@sourceware.org Subject: [PATCH v2 0/7] Update complex number support Date: Fri, 20 Mar 2020 15:53:33 -0600 Message-Id: <20200320215340.16749-1-tom@tromey.com> 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: Sat, 21 Mar 2020 05:27:35 -0000 Here is v2 of the complex number series. Mostly this is just a rebase. Due to val_print removal, I was able to drop one patch. This does add a new (trivial) patch to address something Christian noticed in an earlier complex-related comment change. Also, this updates the accessor patch to also change valprint.c. Tom