rpcsx/rpcs3/Emu/CPU/CPUTranslator.cpp

15 lines
225 B
C++
Raw Normal View History

2018-01-29 22:31:38 +01:00
#ifdef LLVM_AVAILABLE
2016-06-07 22:24:20 +02:00
#include "CPUTranslator.h"
2018-01-29 22:31:38 +01:00
2018-05-01 12:21:45 +02:00
llvm::LLVMContext g_llvm_ctx;
cpu_translator::cpu_translator(llvm::Module* module, bool is_be)
: m_context(g_llvm_ctx)
2018-01-29 22:31:38 +01:00
, m_module(module)
, m_is_be(is_be)
{
}
#endif