From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-1.mimecast.com (us-smtp-delivery-1.mimecast.com [207.211.31.120]) by sourceware.org (Postfix) with ESMTP id 3B0AF3945052 for ; Thu, 12 Mar 2020 19:44:12 +0000 (GMT) Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-363-vcxJNa47N-yizW50phQvig-1; Thu, 12 Mar 2020 15:44:00 -0400 X-MC-Unique: vcxJNa47N-yizW50phQvig-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 0ECD8100550D; Thu, 12 Mar 2020 19:43:59 +0000 (UTC) Received: from ovpn-116-132.phx2.redhat.com (ovpn-116-132.phx2.redhat.com [10.3.116.132]) by smtp.corp.redhat.com (Postfix) with ESMTP id BAD74100164D; Thu, 12 Mar 2020 19:43:58 +0000 (UTC) Message-ID: Subject: Re: [PATCH] RX removed control register cpen From: Jeff Law Reply-To: law@redhat.com To: Darius Galis , gcc-patches@gcc.gnu.org Date: Thu, 12 Mar 2020 13:43:58 -0600 In-Reply-To: <8324d805-532b-c7e9-c221-d87d719b860c@cyberthorstudios.com> References: <8324d805-532b-c7e9-c221-d87d719b860c@cyberthorstudios.com> Organization: Red Hat User-Agent: Evolution 3.34.4 (3.34.4-1.fc31) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-27.1 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS 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: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Mar 2020 19:44:13 -0000 On Thu, 2020-03-12 at 19:49 +0200, Darius Galis wrote: > Hello, > > The following patch removes the CTRLREG_CPEN register variable. > According to the RX software manual: > https://www.renesas.com/cn/en/doc/products/mpumcu/doc/rx_family/r01us0316ej0100-rxv3sm.pdf > there is no control register called cpen. > > Regression test is OK, without additional fails, and was tested with the > following command: > > make -k check-gcc RUNTESTFLAGS=--target_board=rx-sim > > Please let me know if this is OK, Thank you! > Darius > > From ce78a5cde96d2ace6e06733320edbfb0c59c0e88 Mon Sep 17 00:00:00 2001 > From: Darius > Date: Tue, 10 Mar 2020 18:21:20 +0200 > Subject: Removed CTRLREG_CPEN register > > --- > gcc/ChangeLog | 5 +++++ > gcc/config/rx/rx.c | 1 - > gcc/config/rx/rx.md | 1 - > 3 files changed, 5 insertions(+), 2 deletions(-) > > diff --git a/gcc/ChangeLog b/gcc/ChangeLog > index 6c4a505..ea9bbb2 100644 > --- a/gcc/ChangeLog > +++ b/gcc/ChangeLog > @@ -1,3 +1,8 @@ > +2020-03-10 Darius Galis > + > + * config/rx/rx.md: Remove CTRLREG_CPEN > + * config/rx/rx.c: Likewise. THanks. I verified that the CPEN register was removed in 2009. Installed on the trunk. jeff >