Hi! These 2 files had incorrectly formatted Copyright lines (no space between Copyright and (C)) which makes update-copyright.py upset.
Tested on x86_64-linux with update-copyright --this-year, committed to trunk as obvious. 2023-01-16 Jakub Jelinek <ja...@redhat.com> PR other/108413 * config/riscv/riscv-vsetvl.h: Add space in between Copyright and (C). * config/riscv/riscv-vsetvl.cc: Likewise. --- gcc/config/riscv/riscv-vsetvl.h.jj 2023-01-02 09:44:08.289083750 +0100 +++ gcc/config/riscv/riscv-vsetvl.h 2023-01-16 11:05:55.036614938 +0100 @@ -1,5 +1,5 @@ /* VSETVL pass header for RISC-V 'V' Extension for GNU compiler. - Copyright(C) 2022-2023 Free Software Foundation, Inc. + Copyright (C) 2022-2023 Free Software Foundation, Inc. Contributed by Juzhe Zhong (juzhe.zh...@rivai.ai), RiVAI Technologies Ltd. This file is part of GCC. --- gcc/config/riscv/riscv-vsetvl.cc.jj 2023-01-02 09:44:04.914132528 +0100 +++ gcc/config/riscv/riscv-vsetvl.cc 2023-01-16 11:06:00.436535618 +0100 @@ -1,5 +1,5 @@ /* VSETVL pass for RISC-V 'V' Extension for GNU compiler. - Copyright(C) 2022-2023 Free Software Foundation, Inc. + Copyright (C) 2022-2023 Free Software Foundation, Inc. Contributed by Juzhe Zhong (juzhe.zh...@rivai.ai), RiVAI Technologies Ltd. This file is part of GCC. Jakub