mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-25 05:04:09 +08:00
crypto: aesni-intel - Fix another CTR build failure with gas 2.16.1
The previous AES-NI CTR optimization compiling failure gas 2.16.1 fix introduces another compiling failure by itself. This patch fixes that. Reported-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Huang Ying <ying.huang@intel.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
80a6d7db9f
commit
62e7bec494
@ -120,9 +120,9 @@
|
|||||||
.macro REG_TYPE type reg
|
.macro REG_TYPE type reg
|
||||||
R64_NUM reg_type_r64 \reg
|
R64_NUM reg_type_r64 \reg
|
||||||
XMM_NUM reg_type_xmm \reg
|
XMM_NUM reg_type_xmm \reg
|
||||||
.if reg_type_r64 != REG_NUM_INVALID
|
.if reg_type_r64 <> REG_NUM_INVALID
|
||||||
\type = REG_TYPE_R64
|
\type = REG_TYPE_R64
|
||||||
.elseif reg_type_xmm != REG_NUM_INVALID
|
.elseif reg_type_xmm <> REG_NUM_INVALID
|
||||||
\type = REG_TYPE_XMM
|
\type = REG_TYPE_XMM
|
||||||
.else
|
.else
|
||||||
\type = REG_TYPE_INVALID
|
\type = REG_TYPE_INVALID
|
||||||
|
Loading…
Reference in New Issue
Block a user