testsuite: fix pointer conversion error in testcase vect-early-break_110-pr113467.c
I had missed a conversion from unsigned long to uint64_t. This fixes the failing test on -m32. gcc/testsuite/ChangeLog: * gcc.dg/vect/vect-early-break_110-pr113467.c: Change unsigned long * to uint64_t *.
This commit is contained in:
parent
0ba32e2023
commit
56adcd4878
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@
|
|||
typedef struct gcry_mpi *gcry_mpi_t;
|
||||
struct gcry_mpi {
|
||||
int nlimbs;
|
||||
unsigned long *d;
|
||||
uint64_t *d;
|
||||
};
|
||||
|
||||
long gcry_mpi_add_ui_up;
|
||||
|
|
Loading…
Add table
Reference in a new issue