Sorry for the unexpected impact, good to know the rule about git revert, will pay more attention for it.
Pan -----Original Message----- From: Jakub Jelinek <ja...@redhat.com> Sent: Tuesday, November 14, 2023 8:28 PM To: juzhe.zh...@rivai.ai Cc: Richard Biener <richard.guent...@gmail.com>; Li, Pan2 <pan2...@intel.com>; gcc-patches <gcc-patches@gcc.gnu.org>; Wang, Yanzhang <yanzhang.w...@intel.com>; kito.cheng <kito.ch...@gmail.com> Subject: Re: Re: [PATCH v1] RISC-V: Support vec_init for trailing same element On Fri, Nov 10, 2023 at 04:11:44PM +0800, juzhe.zh...@rivai.ai wrote: > And I have revert this patch since we can disscuss more about this pattern > optimization. Unfortunately this broke the ChangeLog generation for several days. The commit message says: Revert "RISC-V: Support vec_init for trailing same element" This reverts commit e7f4040d9d6ec40c48ada940168885d7dde03af9 as introduces some legacy vmv insns. The "This reverts commit ..." part is not free text form, it needs to be exactly as added by git revert, the above unfortunately made it through the pre-commit checking but not already through ChangeLog regeneration. 2023-11-14 Jakub Jelinek <ja...@redhat.com> contrib/ChangeLog: * gcc-changelog/git_update_version.py: Add 040e5b0edbca861196d9e2ea2af5e805769c8d5d to ignored commits. --- contrib/gcc-changelog/git_update_version.py +++ contrib/gcc-changelog/git_update_version.py @@ -37,7 +37,8 @@ IGNORED_COMMITS = ( '3ab5c8cd03d92bf4ec41e351820349d92fbc40c4', '86d8e0c0652ef5236a460b75c25e4f7093cc0651', 'e4cba49413ca429dc82f6aa2e88129ecb3fdd943', - '1957bedf29a1b2cc231972aba680fe80199d5498') + '1957bedf29a1b2cc231972aba680fe80199d5498', + '040e5b0edbca861196d9e2ea2af5e805769c8d5d') FORMAT = '%(asctime)s:%(levelname)s:%(name)s:%(message)s' logging.basicConfig(level=logging.INFO, format=FORMAT, is what I've committed to unbreak this. Jakub