diff options
author | Arnd Bergmann <arnd@arndb.de> | 2020-05-27 15:53:46 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-07-31 16:44:04 +0200 |
commit | 8844e1707f2d0eea489f515fb90f46e490c34503 (patch) | |
tree | 1338b6d010695ef199798a31801870b6edd4bd4e | |
parent | 998c0852c5285e2e3259c52d79b8d9da05f2781d (diff) | |
download | linux-stable-8844e1707f2d0eea489f515fb90f46e490c34503.tar.gz linux-stable-8844e1707f2d0eea489f515fb90f46e490c34503.tar.bz2 linux-stable-8844e1707f2d0eea489f515fb90f46e490c34503.zip |
x86: math-emu: Fix up 'cmp' insn for clang ias
[ Upstream commit 81e96851ea32deb2c921c870eecabf335f598aeb ]
The clang integrated assembler requires the 'cmp' instruction to
have a length prefix here:
arch/x86/math-emu/wm_sqrt.S:212:2: error: ambiguous instructions require an explicit suffix (could be 'cmpb', 'cmpw', or 'cmpl')
cmp $0xffffffff,-24(%ebp)
^
Make this a 32-bit comparison, which it was clearly meant to be.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
Link: https://lkml.kernel.org/r/20200527135352.1198078-1-arnd@arndb.de
Signed-off-by: Sasha Levin <sashal@kernel.org>
-rw-r--r-- | arch/x86/math-emu/wm_sqrt.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/math-emu/wm_sqrt.S b/arch/x86/math-emu/wm_sqrt.S index d258f59564e1..3b40c98bbbd4 100644 --- a/arch/x86/math-emu/wm_sqrt.S +++ b/arch/x86/math-emu/wm_sqrt.S @@ -208,7 +208,7 @@ sqrt_stage_2_finish: #ifdef PARANOID /* It should be possible to get here only if the arg is ffff....ffff */ - cmp $0xffffffff,FPU_fsqrt_arg_1 + cmpl $0xffffffff,FPU_fsqrt_arg_1 jnz sqrt_stage_2_error #endif /* PARANOID */ |