Module Name: src
Committed By: christos
Date: Thu Oct 31 22:36:44 UTC 2024
Modified Files:
src/external/gpl3/gcc/dist/gcc/config/arm: arm_neon.h
Log Message:
add missing const
To generate a diff of this commit:
cvs rdiff -u -r1.1.1.11 -r1.2 \
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.1.1.11 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.1.1.11 Sun Jul 30 01:21:05 2023
+++ src/external/gpl3/gcc/dist/gcc/config/arm/arm_neon.h Thu Oct 31 18:36:44 2024
@@ -16923,7 +16923,7 @@ vldrq_p128 (poly128_t const * __ptr)
poly64_t __d1 = vld1_p64 (__ptmp + 1);
return vreinterpretq_p128_p64 (vcombine_p64 (__d1, __d0));
#else
- return vreinterpretq_p128_p64 (vld1q_p64 ((poly64_t*) __ptr));
+ return vreinterpretq_p128_p64 (vld1q_p64 ((const poly64_t*) __ptr));
#endif
}