Re: [PATCH] lib/mpi: fix build with clang

2017-08-07 Thread Herbert Xu
On Sat, Aug 05, 2017 at 08:31:11PM -0700, Stefan Agner wrote: > Hi Herbert, > > This still applies fine on 4.13-rc3, any chance to get it merged through > one of your trees? If you want it to go through cryptodev you need to post the patches to linux-cry...@vger.kernel.org. Thanks, -- Email: He

Re: [PATCH] lib/mpi: fix build with clang

2017-08-05 Thread Stefan Agner
Hi Herbert, This still applies fine on 4.13-rc3, any chance to get it merged through one of your trees? -- Stefan On 2017-04-19 20:40, Stefan Agner wrote: > Use just @ to denote comments which works with gcc and clang. > Otherwise clang reports an escape sequence error: > error: invalid % esc

Re: [PATCH] lib/mpi: fix build with clang

2017-04-20 Thread Arnd Bergmann
On Thu, Apr 20, 2017 at 5:40 AM, Stefan Agner wrote: > Use just @ to denote comments which works with gcc and clang. > Otherwise clang reports an escape sequence error: > error: invalid % escape in inline assembly string > > Use %0-%3 as operand references, this avoids: > error: invalid operan

[PATCH] lib/mpi: fix build with clang

2017-04-19 Thread Stefan Agner
Use just @ to denote comments which works with gcc and clang. Otherwise clang reports an escape sequence error: error: invalid % escape in inline assembly string Use %0-%3 as operand references, this avoids: error: invalid operand in inline asm: 'umull ${1:r}, ${0:r}, ${2:r}, ${3:r}' Also rem