From eb84b00a3dfa3dbb51dcb7ad47395e45cd07f274 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 25 Jan 2013 17:57:12 -0500 Subject: [PATCH] Fix a duplicate branch in MIPS/MIPSDis.cpp Copypaste error for beql. Thanks go out to [Unknown] for specifying the correct value of o. --- Core/MIPS/MIPSDis.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/MIPS/MIPSDis.cpp b/Core/MIPS/MIPSDis.cpp index d4437ec347..3a72a79418 100644 --- a/Core/MIPS/MIPSDis.cpp +++ b/Core/MIPS/MIPSDis.cpp @@ -139,7 +139,7 @@ namespace MIPSDis int o = op>>26; if (o==4 && rs == rt)//beq sprintf(out,"b\t->$%08x",off); - else if (o==4 && rs == rt)//beq + else if (o==20 && rs == rt)//beql sprintf(out,"bl\t->$%08x",off); else sprintf(out, "%s\t%s, %s, ->$%08x",name,RN(rt),RN(rs),off);