diff options
| author | Paul Burton <paul.burton@imgtec.com> | 2017-03-12 08:12:28 +0000 |
|---|---|---|
| committer | android-build-merger <android-build-merger@google.com> | 2017-03-12 08:12:28 +0000 |
| commit | 3a674057ace07f4e2d2df7751ca207cf88b6ec89 (patch) | |
| tree | d04c671988c0c8eaf04d521665242cdd1108a1ae | |
| parent | 378772df9519e1413e8192b9f7a4d95ea09469c4 (diff) | |
| parent | ab7546e4910022dc07223739f58daff2aee9b18b (diff) | |
MIPS: Handle microMIPS jumps in the same way as MIPS32/MIPS64 jumps
am: ab7546e491
Change-Id: Idcfd907ca44b5d0e5231e07e1945eb7a1e874f39
| -rw-r--r-- | arch/mips/kernel/process.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/mips/kernel/process.c b/arch/mips/kernel/process.c index 2f9fbeccadb7..fc537d1b649d 100644 --- a/arch/mips/kernel/process.c +++ b/arch/mips/kernel/process.c @@ -289,6 +289,8 @@ static inline int is_jump_ins(union mips_instruction *ip) return 0; } + if (ip->j_format.opcode == mm_j32_op) + return 1; if (ip->j_format.opcode == mm_jal32_op) return 1; if (ip->r_format.opcode != mm_pool32a_op || |
