Re: [PATCH v2] lib/mpi: Eliminate unused umul_ppmm definitions for MIPS

2019-08-21 Thread Herbert Xu
On Mon, Aug 12, 2019 at 12:32:57PM -0700, Nathan Chancellor wrote: > Clang errors out when building this macro: > > lib/mpi/generic_mpih-mul1.c:37:24: error: invalid use of a cast in a > inline asm context requiring an l-value: remove the cast or build with > -fheinous-gnu-extensions >

Re: [PATCH v2] lib/mpi: Eliminate unused umul_ppmm definitions for MIPS

2019-08-12 Thread Nick Desaulniers
On Mon, Aug 12, 2019 at 12:36 PM Nathan Chancellor wrote: > > Clang errors out when building this macro: > > lib/mpi/generic_mpih-mul1.c:37:24: error: invalid use of a cast in a > inline asm context requiring an l-value: remove the cast or build with > -fheinous-gnu-extensions > um

[PATCH v2] lib/mpi: Eliminate unused umul_ppmm definitions for MIPS

2019-08-12 Thread Nathan Chancellor
Clang errors out when building this macro: lib/mpi/generic_mpih-mul1.c:37:24: error: invalid use of a cast in a inline asm context requiring an l-value: remove the cast or build with -fheinous-gnu-extensions umul_ppmm(prod_high, prod_low, s1_ptr[j], s2_limb); ~~