rpcsx/rpcs3/Emu/CPU/CPUTranslator.cpp

13 lines
219 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
cpu_translator::cpu_translator(llvm::LLVMContext& context, llvm::Module* module, bool is_be)
: m_context(context)
, m_module(module)
, m_is_be(is_be)
{
}
#endif