From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1652) id F3BB9385780B; Mon, 23 Aug 2021 11:38:23 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org F3BB9385780B MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Christophe Lyon To: gcc-cvs@gcc.gnu.org Subject: [gcc r10-10053] arm: Fix __arm_vctp16q return type in arm_mve.h X-Act-Checkin: gcc X-Git-Author: Christophe Lyon X-Git-Refname: refs/heads/releases/gcc-10 X-Git-Oldrev: fe40fe6216c5097c40948d3a781bcc616676627c X-Git-Newrev: 2d83dc471d1cd88c69fcbd030acc81d75d6847de Message-Id: <20210823113823.F3BB9385780B@sourceware.org> Date: Mon, 23 Aug 2021 11:38:23 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2021 11:38:24 -0000 https://gcc.gnu.org/g:2d83dc471d1cd88c69fcbd030acc81d75d6847de commit r10-10053-g2d83dc471d1cd88c69fcbd030acc81d75d6847de Author: Christophe Lyon Date: Mon Aug 23 09:47:14 2021 +0000 arm: Fix __arm_vctp16q return type in arm_mve.h __arm_vctp16q actually returns mve_pred16_t rather than int64_t. 2021-08-23 Christophe Lyon gcc/ * config/arm/arm_mve.h: Fix __arm_vctp16q return type. (cherry picked from commit ac3bcc813f26e6dc4c3b037d9d5c5a84f7f62cf4) Diff: --- gcc/config/arm/arm_mve.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/arm/arm_mve.h b/gcc/config/arm/arm_mve.h index 4aa3787ca53..a19006f5008 100644 --- a/gcc/config/arm/arm_mve.h +++ b/gcc/config/arm/arm_mve.h @@ -3524,7 +3524,7 @@ __arm_vaddlvq_u32 (uint32x4_t __a) return __builtin_mve_vaddlvq_uv4si (__a); } -__extension__ extern __inline int64_t +__extension__ extern __inline mve_pred16_t __attribute__ ((__always_inline__, __gnu_inline__, __artificial__)) __arm_vctp16q (uint32_t __a) {