Skip to content

Commit

Permalink
Merge pull request #3334 from Sonicadvance1/remove_old_x86jit_references
Browse files Browse the repository at this point in the history
FEXCore: Removes stale references to x86 JIT
  • Loading branch information
Sonicadvance1 committed Dec 18, 2023
2 parents 4333261 + bcc2901 commit 8665490
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
4 changes: 0 additions & 4 deletions FEXCore/Source/Interface/Context/Context.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ namespace CodeSerialize {

namespace CPU {
class Arm64JITCore;
class X86JITCore;
class Dispatcher;
}
namespace HLE {
Expand Down Expand Up @@ -192,9 +191,6 @@ namespace FEXCore::Context {
#ifdef JIT_ARM64
friend class FEXCore::CPU::Arm64JITCore;
#endif
#ifdef JIT_X86_64
friend class FEXCore::CPU::X86JITCore;
#endif

friend class FEXCore::IR::Validation::IRValidation;

Expand Down
4 changes: 0 additions & 4 deletions FEXCore/Source/Interface/Core/JIT/JITCore.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ struct InternalThreadState;
namespace FEXCore::CPU {
class CPUBackend;

[[nodiscard]] fextl::unique_ptr<CPUBackend> CreateX86JITCore(FEXCore::Context::ContextImpl *ctx,
FEXCore::Core::InternalThreadState *Thread);
CPUBackendFeatures GetX86JITBackendFeatures();

[[nodiscard]] fextl::unique_ptr<CPUBackend> CreateArm64JITCore(FEXCore::Context::ContextImpl *ctx,
FEXCore::Core::InternalThreadState *Thread);
CPUBackendFeatures GetArm64JITBackendFeatures();
Expand Down

0 comments on commit 8665490

Please sign in to comment.