diff options
author | Christophe Lyon <christophe.lyon@foss.st.com> | 2021-08-23 09:47:14 +0000 |
---|---|---|
committer | Christophe Lyon <christophe.lyon@foss.st.com> | 2021-08-23 09:47:14 +0000 |
commit | ac3bcc813f26e6dc4c3b037d9d5c5a84f7f62cf4 (patch) | |
tree | 2174da3b7b92b698e26ae1b4a6954188803cd63f | |
parent | 63f68535550f77998ad907ba3d3be05a4324fbe8 (diff) | |
download | gcc-ac3bcc813f26e6dc4c3b037d9d5c5a84f7f62cf4.zip gcc-ac3bcc813f26e6dc4c3b037d9d5c5a84f7f62cf4.tar.gz gcc-ac3bcc813f26e6dc4c3b037d9d5c5a84f7f62cf4.tar.bz2 |
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 <christophe.lyon@foss.st.com>
gcc/
* config/arm/arm_mve.h: Fix __arm_vctp16q return type.
-rw-r--r-- | gcc/config/arm/arm_mve.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/arm/arm_mve.h b/gcc/config/arm/arm_mve.h index 83f1003..e04d462 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) { |