From e8925e43febb2f95b1d4ec09f4804861bab37282 Mon Sep 17 00:00:00 2001 From: magumagu9 Date: Mon, 9 Feb 2009 05:22:44 +0000 Subject: [PATCH] JitIL: Disable addze implementation for now; I'm not exactly sure what's wrong with it, but it's causing visible issues. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2171 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Core/Src/PowerPC/Jit64IL/Jit_Integer.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/Core/Src/PowerPC/Jit64IL/Jit_Integer.cpp b/Source/Core/Core/Src/PowerPC/Jit64IL/Jit_Integer.cpp index c49187eff0..c22768e9e7 100644 --- a/Source/Core/Core/Src/PowerPC/Jit64IL/Jit_Integer.cpp +++ b/Source/Core/Core/Src/PowerPC/Jit64IL/Jit_Integer.cpp @@ -341,6 +341,8 @@ void Jit64::addzex(UGeckoInstruction inst) { + Default(inst); return; + // FIXME: There's a bug in here somewhere! INSTRUCTION_START IREmitter::InstLoc lhs = ibuild.EmitLoadGReg(inst.RA), val, newcarry;