testsuite: Fix up pr112337.c test
gcc/testsuite/ChangeLog: * gcc.target/arm/mve/pr112337.c: Use int32_t instead of int.
This commit is contained in:
parent
806789e6da
commit
8bc06e8302
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue