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:
Tamar Christina 2024-02-08 10:30:19 +00:00
parent 0ba32e2023
commit 56adcd4878

View file

@ -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;