diff options
author | Markos Chandras <markos.chandras@imgtec.com> | 2014-04-16 13:49:57 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-05-30 16:10:19 +0200 |
commit | 8248881835da58fa075299926c2994d12b56895b (patch) | |
tree | d7b0ca159c830f13e2ea0686b36b0eb9957a3f3b /arch/mips/mm/uasm-mips.c | |
parent | 16d21a812f6bfcbfa84ccc19d38abe797c71b73e (diff) | |
download | linux-stable-8248881835da58fa075299926c2994d12b56895b.tar.gz linux-stable-8248881835da58fa075299926c2994d12b56895b.tar.bz2 linux-stable-8248881835da58fa075299926c2994d12b56895b.zip |
MIPS: uasm: Add lb uasm 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>
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 4f9114b2ff34..38792c2364f5 100644 --- a/arch/mips/mm/uasm-mips.c +++ b/arch/mips/mm/uasm-mips.c @@ -86,6 +86,7 @@ static struct insn insn_table[] = { { insn_jalr, M(spec_op, 0, 0, 0, 0, jalr_op), RS | RD }, { insn_j, M(j_op, 0, 0, 0, 0, 0), JIMM }, { insn_jr, M(spec_op, 0, 0, 0, 0, jr_op), RS }, + { insn_lb, M(lb_op, 0, 0, 0, 0, 0), RS | RT | SIMM }, { 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 }, |