rpcsx/rpcs3/Emu/CPU/CPUTranslator.cpp

15 lines
225 B
C++
Raw Normal View History

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