MIPS: Handle microMIPS jumps in the same way as MIPS32/MIPS64 jumps

am: ab7546e491

Change-Id: Idcfd907ca44b5d0e5231e07e1945eb7a1e874f39
This commit is contained in:
Paul Burton
2017-03-12 08:12:28 +00:00
committed by android-build-merger

View File

@@ -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 ||