]> git.baikalelectronics.ru Git - kernel.git/commit
powerpc/64e: Convert cmpi to cmpwi in head_64.S
authorNicholas Piggin <npiggin@gmail.com>
Wed, 23 Nov 2016 13:02:07 +0000 (00:02 +1100)
committerMichael Ellerman <mpe@ellerman.id.au>
Mon, 28 Nov 2016 11:32:29 +0000 (22:32 +1100)
commita732858cc22585bb5ed261814b09e70b411166e9
treef90844c323d24e27c08c113beaffd318f004c243
parent559d54212ec5120b3da4b85c301f06be4b8eb53b
powerpc/64e: Convert cmpi to cmpwi in head_64.S

From ac42336d509f ("powerpc: Convert cmp to cmpd in idle enter sequence"):

  PowerPC's "cmp" instruction has four operands. Normally people write
  "cmpw" or "cmpd" for the second cmp operand 0 or 1. But, frequently
  people forget, and write "cmp" with just three operands.

  With older binutils this is silently accepted as if this was "cmpw",
  while often "cmpd" is wanted. With newer binutils GAS will complain
  about this for 64-bit code. For 32-bit code it still silently assumes
  "cmpw" is what is meant.

In this case, cmpwi is called for, so this is just a build fix for
new toolchains.

Cc: stable@vger.kernel.org # v3.0+
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
arch/powerpc/kernel/head_64.S