Re: [PATCH] x86: crypto: fix building crc32c with clang ias

2020-07-23 Thread Sedat Dilek
On Thu, Jul 23, 2020 at 9:57 AM Herbert Xu wrote: > > On Wed, May 27, 2020 at 04:17:40PM +0200, Arnd Bergmann wrote: > > The clang integrated assembler complains about movzxw: > > > > arch/x86/crypto/crc32c-pcl-intel-asm_64.S:173:2: error: invalid instruction > > mnemonic 'movzxw' > > > > It seem

Re: [PATCH] x86: crypto: fix building crc32c with clang ias

2020-07-23 Thread Herbert Xu
On Wed, May 27, 2020 at 04:17:40PM +0200, Arnd Bergmann wrote: > The clang integrated assembler complains about movzxw: > > arch/x86/crypto/crc32c-pcl-intel-asm_64.S:173:2: error: invalid instruction > mnemonic 'movzxw' > > It seems that movzwq is the mnemonic that it expects instead, > and this

Re: [PATCH] x86: crypto: fix building crc32c with clang ias

2020-05-27 Thread Nathan Chancellor
On Wed, May 27, 2020 at 08:24:35PM +0200, Arnd Bergmann wrote: > On Wed, May 27, 2020 at 6:42 PM Nathan Chancellor > wrote: > > > > On Wed, May 27, 2020 at 04:17:40PM +0200, Arnd Bergmann wrote: > > > The clang integrated assembler complains about movzxw: > > > > > > arch/x86/crypto/crc32c-pcl-int

Re: [PATCH] x86: crypto: fix building crc32c with clang ias

2020-05-27 Thread Arnd Bergmann
On Wed, May 27, 2020 at 6:42 PM Nathan Chancellor wrote: > > On Wed, May 27, 2020 at 04:17:40PM +0200, Arnd Bergmann wrote: > > The clang integrated assembler complains about movzxw: > > > > arch/x86/crypto/crc32c-pcl-intel-asm_64.S:173:2: error: invalid instruction > > mnemonic 'movzxw' > > > >

Re: [PATCH] x86: crypto: fix building crc32c with clang ias

2020-05-27 Thread Nathan Chancellor
On Wed, May 27, 2020 at 04:17:40PM +0200, Arnd Bergmann wrote: > The clang integrated assembler complains about movzxw: > > arch/x86/crypto/crc32c-pcl-intel-asm_64.S:173:2: error: invalid instruction > mnemonic 'movzxw' > > It seems that movzwq is the mnemonic that it expects instead, > and this