From 541a86de265cf783c08e7a4f7eb18a8eb625aded Mon Sep 17 00:00:00 2001 From: Maarten ter Huurne Date: Wed, 27 Aug 2008 13:42:32 +0000 Subject: [PATCH] Removed unused function x86SetJ8(). git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@365 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Common/Src/x64Emitter.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/Source/Core/Common/Src/x64Emitter.cpp b/Source/Core/Common/Src/x64Emitter.cpp index 224cc2b806..2eea4a05c2 100644 --- a/Source/Core/Common/Src/x64Emitter.cpp +++ b/Source/Core/Common/Src/x64Emitter.cpp @@ -318,16 +318,6 @@ namespace Gen Write32(u32(distance)); } - void x86SetJ8(u8 *j8) - { - //TODO fix - u64 jump = (code - (u8*)j8) - 1; - - if (jump > 0x7f) - _assert_msg_(DYNA_REC, 0, "j8 greater than 0x7f!!"); - *j8 = (u8)jump; - } - FixupBranch J(bool force5bytes) { FixupBranch branch;