|
From: Petar J. <pe...@so...> - 2019-03-25 16:48:11
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=b93d378296c6d54d0eaee63eab4a9962c5e76167 commit b93d378296c6d54d0eaee63eab4a9962c5e76167 Author: Petar Jovanovic <mip...@gm...> Date: Mon Mar 25 16:45:47 2019 +0000 mips: add a comment about decoding LX on Cavium Interpret LX as a Cavium instruction, otherwise try decoding it as a DSP instruction. The fallthrough is deliberate. Related to KDE #405430. Diff: --- VEX/priv/guest_mips_toIR.c | 1 + 1 file changed, 1 insertion(+) diff --git a/VEX/priv/guest_mips_toIR.c b/VEX/priv/guest_mips_toIR.c index e2eeb0a..d05816e 100644 --- a/VEX/priv/guest_mips_toIR.c +++ b/VEX/priv/guest_mips_toIR.c @@ -30206,6 +30206,7 @@ static DisResult disInstr_MIPS_WRK ( Bool(*resteerOkFn) (/*opaque */void *, break; goto decode_failure; } + /* fallthrough */ case 0xC: /* INSV */ case 0x38: { /* EXTR.W */ if (VEX_MIPS_PROC_DSP(archinfo->hwcaps)) { |