diff options
author | Markos Chandras <markos.chandras@imgtec.com> | 2014-04-08 12:47:12 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-05-30 15:54:38 +0200 |
commit | d6b3314b49e12e8c349deb4ca28e7028db00728f (patch) | |
tree | b7238bec333b372269e58db13540cd5dc3d04583 /arch/mips/mm/uasm-mips.c | |
parent | ab9e4fa092db6c4beea8fde67261959520675456 (diff) | |
download | linux-stable-d6b3314b49e12e8c349deb4ca28e7028db00728f.tar.gz linux-stable-d6b3314b49e12e8c349deb4ca28e7028db00728f.tar.bz2 linux-stable-d6b3314b49e12e8c349deb4ca28e7028db00728f.zip |
MIPS: uasm: Add lh uam instruction
It will be used later on by bpf-jit
[ralf@linux-mips.org: Resolved conflict.]
Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
Cc: linux-mips@linux-mips.org
Patchwork: http://patchwork.linux-mips.org/patch/6733/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/mm/uasm-mips.c')
-rw-r--r-- | arch/mips/mm/uasm-mips.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/mm/uasm-mips.c b/arch/mips/mm/uasm-mips.c index c50d3b4b55a7..cb75d452ec0e 100644 --- a/arch/mips/mm/uasm-mips.c +++ b/arch/mips/mm/uasm-mips.c @@ -88,6 +88,7 @@ static struct insn insn_table[] = { { insn_jr, M(spec_op, 0, 0, 0, 0, jr_op), RS }, { insn_ld, M(ld_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, { insn_ldx, M(spec3_op, 0, 0, 0, ldx_op, lx_op), RS | RT | RD }, + { insn_lh, M(lw_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, { insn_lld, M(lld_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, { insn_ll, M(ll_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, { insn_lui, M(lui_op, 0, 0, 0, 0, 0), RT | SIMM }, |