From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 124023 invoked by alias); 12 Feb 2018 13:27:33 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 123864 invoked by uid 89); 12 Feb 2018 13:27:32 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-11.1 required=5.0 tests=BAYES_00,GIT_PATCH_2,GIT_PATCH_3,KAM_ASCII_DIVIDERS,KAM_SHORT,RCVD_IN_DNSWL_NONE,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy=H*UA:Outlook, H*x:Outlook, H*UA:Microsoft X-HELO: relmlie3.idc.renesas.com Received: from relmlor4.renesas.com (HELO relmlie3.idc.renesas.com) (210.160.252.174) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 12 Feb 2018 13:27:29 +0000 Received: from unknown (HELO relmlir3.idc.renesas.com) ([10.200.68.153]) by relmlie3.idc.renesas.com with ESMTP; 12 Feb 2018 22:27:26 +0900 Received: from relmlii2.idc.renesas.com (relmlii2.idc.renesas.com [10.200.68.66]) by relmlir3.idc.renesas.com (Postfix) with ESMTP id C0FFC75A6F; Mon, 12 Feb 2018 22:27:26 +0900 (JST) Received: from unknown (HELO REEBED03978) ([10.226.37.54]) by relmlii2.idc.renesas.com with ESMTP; 12 Feb 2018 22:27:24 +0900 From: "Sebastian Perta" To: "'Jakub Jelinek'" Cc: "Nick Clifton" , "gcc-patches" References: <20180209182349.GL5867@tucnak> <000001d3a3f1$8cf26ce0$a6d746a0$@renesas.com> <20180212124430.GA5867@tucnak> In-Reply-To: <20180212124430.GA5867@tucnak> Subject: RE: PING [PATCH] RX movsicc degrade fix Date: Mon, 12 Feb 2018 13:27:00 -0000 Message-ID: <000101d3a405$3926eb40$ab74c1c0$@renesas.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-SW-Source: 2018-02/txt/msg00643.txt.bz2 HI Jakub, I have updated the changelog entries as per your suggestion. Is this OK? Thank you! Best Regards, Sebastian Index: ChangeLog =================================================================== --- ChangeLog (revision 257583) +++ ChangeLog (working copy) @@ -129,8 +129,7 @@ 2018-02-09 Sebastian Perta - * config/rx.md: updated "movsicc" expand to be matched by GCC - * testsuite/gcc.target/rx/movsicc.c: new test case + * config/rx/rx.md (movsicc): Update expander to be matched by GCC. 2018-02-09 Peter Bergner @@ -143,10 +142,10 @@ 2018-02-09 Sebastian Perta - * config/rx/constraints.md: added new constraint CALL_OP_SYMBOL_REF - to allow or block "symbol_ref" depending on value of TARGET_JSR - * config/rx/rx.md: use CALL_OP_SYMBOL_REF in call_internal and - call_value_internal insns + * config/rx/constraints.md (CALL_OP_SYMBOL_REF): Added new constraint + to allow or block "symbol_ref" depending on the value of TARGET_JSR. + * config/rx/rx.md (call_internal): Use CALL_OP_SYMBOL_REF. + * config/rx/rx.md (call_value_internal): Use CALL_OP_SYMBOL_REF. 2018-02-09 Pierre-Marie de Rodat @@ -1342,9 +1341,8 @@ 2018-01-26 Sebastian Perta - * config/rl78/rl78.c: if operand 2 is const avoid addition with 0 - and use incw and decw where possible - * testsuite/gcc.target/rl78/test_addsi3_internal.c: new file + * config/rl78/rl78.c (rl78_addsi3_internal): If operand 2 is const + avoid addition with 0 and use incw and decw where possible. 2018-01-26 Richard Biener @@ -1675,15 +1673,15 @@ 2018-01-22 Sebastian Perta - * config/rl78/rl78-expand.md: New define_expand "bswaphi2" - * config/rl78/rl78-virt.md: New define_insn "*bswaphi2_virt" - * config/rl78/rl78-real.md: New define_insn "*bswaphi2_real" + * config/rl78/rl78-expand.md (bswaphi2): New define_expand. + * config/rl78/rl78-virt.md (*bswaphi2_virt): New define_insn. + * config/rl78/rl78-real.md (*bswaphi2_real): New define_insn. 2018-01-22 Sebastian Perta - * config/rl78/rl78-protos.h: New function declaration rl78_split_movdi - * config/rl78/rl78.md: New define_expand "movdi" - * config/rl78/rl78.c: New function definition rl78_split_movdi + * config/rl78/rl78-protos.h (rl78_split_movdi): New function declaration. + * config/rl78/rl78.md (movdi): New define_expand. + * config/rl78/rl78.c (rl78_split_movdi): New function. 2018-01-22 Michael Meissner @@ -1706,19 +1704,19 @@ 2018-01-22 Sebastian Perta - * config/rl78/rl78.md: New define_expand "anddi3". + * config/rl78/rl78.md (anddi3): New define_expand. 2018-01-22 Sebastian Perta - * config/rl78/rl78.md: New define_expand "umindi3". + * config/rl78/rl78.md (umindi3): New define_expand. 2018-01-22 Sebastian Perta - * config/rl78/rl78.md: New define_expand "smindi3". + * config/rl78/rl78.md (smindi3): New define_expand. 2018-01-22 Sebastian Perta - * config/rl78/rl78.md: New define_expand "smaxdi3". + * config/rl78/rl78.md (smaxdi3): New define_expand. 2018-01-22 Carl Love @@ -1738,12 +1736,12 @@ 2018-01-22 Sebastian Perta - * config/rl78/rl78.md: New define_expand "umaxdi3". + * config/rl78/rl78.md (umaxdi3): New define_expand. 2018-01-22 Sebastian Perta - * config/rl78/rl78.c (rl78_note_reg_set): fixed dead reg check - for non-QImode registers + * config/rl78/rl78.c (rl78_note_reg_set): Fixed dead reg check + for non-QImode registers. 2018-01-22 Richard Biener Index: testsuite/ChangeLog =================================================================== --- testsuite/ChangeLog (revision 257583) +++ testsuite/ChangeLog (working copy) @@ -80,7 +80,11 @@ PR sanitizer/83987 * g++.dg/ubsan/pr83987-2.C: New test. + +2018-02-09 Sebastian Perta + + * gcc.target/rx/movsicc.c: New test. + 2018-02-09 Peter Bergner PR target/83926 @@ -945,6 +949,10 @@ PR c++/83924 * g++.dg/warn/Wduplicated-branches5.C: New. +2018-01-26 Sebastian Perta + + * gcc.target/rl78/test_addsi3_internal.c: New test. + 2018-01-26 Segher Boessenkool * gcc.target/powerpc/safe-indirect-jump-1.c: Build on all targets. > -----Original Message----- > From: Jakub Jelinek [mailto:jakub@redhat.com] > Sent: 12 February 2018 12:45 > To: Sebastian Perta > Cc: Nick Clifton ; gcc-patches patches@gcc.gnu.org> > Subject: Re: PING [PATCH] RX movsicc degrade fix > > On Mon, Feb 12, 2018 at 11:06:35AM -0000, Sebastian Perta wrote: > > Hi Jakub, > > > > Thank you for pointing this out, I'm sorry! > > Can I create a patch to correct the changelog entries? > > > > Best Regards, > > Sebastian > > > > >>1) there should be a space between * and the filename > > The spaces are there (see the changelog), the renesas mail server removes > > them sometimes > > They weren't there in what I've fixed. > See > https://gcc.gnu.org/viewcvs/gcc/trunk/gcc/ChangeLog?r1=257536&r2=25753 > 5&pathrev=257536 > > Jakub