[gcc r14-6094] testsuite: Fix up pr112337.c test
Richard Sandiford
rsandifo@gcc.gnu.org
Sun Dec 3 16:15:35 GMT 2023
https://gcc.gnu.org/g:8bc06e8302116267c47c640b03c5eceef9da15ca
commit r14-6094-g8bc06e8302116267c47c640b03c5eceef9da15ca
Author: Saurabh Jha <saurabh.jha@arm.com>
Date: Sun Dec 3 16:15:24 2023 +0000
testsuite: Fix up pr112337.c test
gcc/testsuite/ChangeLog:
* gcc.target/arm/mve/pr112337.c: Use int32_t instead of int.
Diff:
---
gcc/testsuite/gcc.target/arm/mve/pr112337.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gcc/testsuite/gcc.target/arm/mve/pr112337.c b/gcc/testsuite/gcc.target/arm/mve/pr112337.c
index 8f491990088..d1a075ecd0e 100644
--- a/gcc/testsuite/gcc.target/arm/mve/pr112337.c
+++ b/gcc/testsuite/gcc.target/arm/mve/pr112337.c
@@ -5,8 +5,8 @@
#include <arm_mve.h>
void g(int32x4_t);
-void f(int, int, int, short, int *p) {
- int *bias = p;
+void f(int, int, int, short, int32_t *p) {
+ int32_t *bias = p;
for (;;) {
int32x4_t d = vldrwq_s32 (p);
bias += 4;
More information about the Gcc-cvs
mailing list