Module Name: src Committed By: rin Date: Fri Nov 1 09:22:26 UTC 2024
Modified Files: src/external/gpl3/gcc/dist/gcc/config/arm: arm_neon.h Log Message: gcc/arm_neon.h: vldrq_p128: Sprinkle const also for armeb and use `foo const *` instead of `const foo *`, as seen in the argument declaration of this function. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/external/gpl3/gcc/dist/gcc/config/arm/arm_neon.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/external/gpl3/gcc/dist/gcc/config/arm/arm_neon.h diff -u src/external/gpl3/gcc/dist/gcc/config/arm/arm_neon.h:1.2 src/external/gpl3/gcc/dist/gcc/config/arm/arm_neon.h:1.3 --- src/external/gpl3/gcc/dist/gcc/config/arm/arm_neon.h:1.2 Thu Oct 31 22:36:44 2024 +++ src/external/gpl3/gcc/dist/gcc/config/arm/arm_neon.h Fri Nov 1 09:22:26 2024 @@ -16918,12 +16918,12 @@ __attribute__ ((__always_inline__, __gn vldrq_p128 (poly128_t const * __ptr) { #ifdef __ARM_BIG_ENDIAN - poly64_t* __ptmp = (poly64_t*) __ptr; + poly64_t const * __ptmp = (poly64_t const *) __ptr; poly64_t __d0 = vld1_p64 (__ptmp); poly64_t __d1 = vld1_p64 (__ptmp + 1); return vreinterpretq_p128_p64 (vcombine_p64 (__d1, __d0)); #else - return vreinterpretq_p128_p64 (vld1q_p64 ((const poly64_t*) __ptr)); + return vreinterpretq_p128_p64 (vld1q_p64 ((poly64_t const *) __ptr)); #endif }