|
From: Petar J. <pe...@so...> - 2019-03-18 15:49:31
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=029f1196fcafb49183c87c53e3a7febc762a0dc8 commit 029f1196fcafb49183c87c53e3a7febc762a0dc8 Author: Petar Jovanovic <mip...@gm...> Date: Mon Mar 18 16:47:50 2019 +0100 mips: correct order of function arguments for mkFormVEC Vectors wt and ws were incorrectly received in mkFormVEC(). Issue spotted by Mark Wielaard and reported as KDE #405458. Diff: --- VEX/priv/host_mips_defs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VEX/priv/host_mips_defs.c b/VEX/priv/host_mips_defs.c index 64a769d..7a3faed 100644 --- a/VEX/priv/host_mips_defs.c +++ b/VEX/priv/host_mips_defs.c @@ -3373,7 +3373,7 @@ static UChar *mkForm3R(UChar *p, UInt op, UInt df, UInt wd, UInt ws, UInt wt) { return emit32(p, theInstr); } -static UChar *mkFormVEC(UChar *p, UInt op, UInt ws, UInt wt, UInt wd) { +static UChar *mkFormVEC(UChar *p, UInt op, UInt wt, UInt ws, UInt wd) { UInt theInstr; vassert(op < 0x20); vassert(wt < 0x20); |