@@ -504,15 +504,15 @@ static inline void sparse_mat_fglm_mult_vec(CF_t *res, sp_matfglm_t *mat,
504504 nmod_t mod ;
505505 uint64_t pow2_precomp ;
506506 nmod_init (& mod , (uint64_t )prime );
507- NMOD_RED (pow2_precomp , (UWORD (1 ) << __DOT_SPLIT_BITS ), mod );
507+ NMOD_RED (pow2_precomp , (UINT64_C (1 ) << __DOT_SPLIT_BITS ), mod );
508508
509509 _avx512_matrix_vector_product (vres , mat -> dense_mat , vec , mat -> dst ,
510510 ncols , nrows , mod , pow2_precomp , st );
511511#elif defined(HAVE_AVX2 )
512512 nmod_t mod ;
513513 uint64_t pow2_precomp ;
514514 nmod_init (& mod , (uint64_t )prime );
515- NMOD_RED (pow2_precomp , (UWORD (1 ) << __DOT_SPLIT_BITS ), mod );
515+ NMOD_RED (pow2_precomp , (UINT64_C (1 ) << __DOT_SPLIT_BITS ), mod );
516516
517517 _avx2_matrix_vector_product (vres , mat -> dense_mat , vec , mat -> dst ,
518518 ncols , nrows , mod , pow2_precomp , st );
@@ -565,15 +565,15 @@ static inline void sparse_mat_fglm_colon_mult_vec(CF_t *res, sp_matfglmcol_t *ma
565565 nmod_t mod ;
566566 uint64_t pow2_precomp ;
567567 nmod_init (& mod , (uint64_t )prime );
568- NMOD_RED (pow2_precomp , (UWORD (1 ) << __DOT_SPLIT_BITS ), mod );
568+ NMOD_RED (pow2_precomp , (UINT64_C (1 ) << __DOT_SPLIT_BITS ), mod );
569569
570570 _avx512_matrix_vector_product (vres , mat -> dense_mat , vec , mat -> dst ,
571571 ncols , nrows , mod , pow2_precomp , st );
572572#elif defined(HAVE_AVX2 )
573573 nmod_t mod ;
574574 uint64_t pow2_precomp ;
575575 nmod_init (& mod , (uint64_t )prime );
576- NMOD_RED (pow2_precomp , (UWORD (1 ) << __DOT_SPLIT_BITS ), mod );
576+ NMOD_RED (pow2_precomp , (UINT64_C (1 ) << __DOT_SPLIT_BITS ), mod );
577577
578578 _avx2_matrix_vector_product (vres , mat -> dense_mat , vec , mat -> dst ,
579579 ncols , nrows , mod , pow2_precomp , st );
0 commit comments