diff options
author | Markos Chandras <markos.chandras@imgtec.com> | 2014-06-23 11:38:45 +0200 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-06-26 11:48:19 +0200 |
commit | 7682f9e81899f1f874bd565daa7fb0b20024ed80 (patch) | |
tree | 836541e400ac7d0fc928c22cb2f785a3f62dc2ec /arch/mips/include/uapi | |
parent | MIPS: uasm: Add s3s1s2 instruction builder (diff) | |
download | linux-7682f9e81899f1f874bd565daa7fb0b20024ed80.tar.xz linux-7682f9e81899f1f874bd565daa7fb0b20024ed80.zip |
MIPS: uasm: Add SLT uasm instruction
It will be used later on by bpf-jit
Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
Cc: linux-mips@linux-mips.org
Cc: Markos Chandras <markos.chandras@imgtec.com>
Patchwork: https://patchwork.linux-mips.org/patch/7120/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/include/uapi')
-rw-r--r-- | arch/mips/include/uapi/asm/inst.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/include/uapi/asm/inst.h b/arch/mips/include/uapi/asm/inst.h index 4b7160259292..4bfdb9d4c186 100644 --- a/arch/mips/include/uapi/asm/inst.h +++ b/arch/mips/include/uapi/asm/inst.h @@ -273,6 +273,7 @@ enum mm_32a_minor_op { mm_and_op = 0x250, mm_or32_op = 0x290, mm_xor32_op = 0x310, + mm_slt_op = 0x350, mm_sltu_op = 0x390, }; |