diff options
author | Saurabh Jha <saurabh.jha@arm.com> | 2023-12-03 16:15:24 +0000 |
---|---|---|
committer | Richard Sandiford <richard.sandiford@arm.com> | 2023-12-03 16:15:24 +0000 |
commit | 8bc06e8302116267c47c640b03c5eceef9da15ca (patch) | |
tree | 9f2430d253aa0f96e5ba6c9a0341aa8c1b026369 /gcc | |
parent | 806789e6daa39ab0503d91c71b3faeb5d5cdd317 (diff) | |
download | gcc-8bc06e8302116267c47c640b03c5eceef9da15ca.zip gcc-8bc06e8302116267c47c640b03c5eceef9da15ca.tar.gz gcc-8bc06e8302116267c47c640b03c5eceef9da15ca.tar.bz2 |
testsuite: Fix up pr112337.c test
gcc/testsuite/ChangeLog:
* gcc.target/arm/mve/pr112337.c: Use int32_t instead of int.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/gcc.target/arm/mve/pr112337.c | 4 |
1 files 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 8f49199..d1a075e 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; |