]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
testsuite: fix pointer conversion error in testcase vect-early-break_110-pr113467.c
authorTamar Christina <tamar.christina@arm.com>
Thu, 8 Feb 2024 10:30:19 +0000 (10:30 +0000)
committerTamar Christina <tamar.christina@arm.com>
Thu, 8 Feb 2024 10:30:19 +0000 (10:30 +0000)
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 *.

gcc/testsuite/gcc.dg/vect/vect-early-break_110-pr113467.c

index 1e2c47be5fdf1e1fed88e4b5f45d7eda6c3b85d1..12d0ea1e871b51742c040c909ea5741bc820206e 100644 (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;