8 lines
166 B
C++
8 lines
166 B
C++
#include "GlobalContext.h"
|
|
|
|
std::shared_ptr<llvm::LLVMContext> globalContext;
|
|
|
|
void initGlobalContext()
|
|
{
|
|
globalContext = std::make_shared<llvm::LLVMContext>();
|
|
} |