26 lines
		
	
	
		
			780 B
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			780 B
		
	
	
	
		
			C++
		
	
	
	
//===--------- OrcTestCommon.cpp - Utilities for Orc Unit Tests -----------===//
 | 
						|
//
 | 
						|
//                     The LLVM Compiler Infrastructure
 | 
						|
//
 | 
						|
// This file is distributed under the University of Illinois Open Source
 | 
						|
// License. See LICENSE.TXT for details.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
//
 | 
						|
// Common utilities for Orc unit tests.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
 | 
						|
#include "OrcTestCommon.h"
 | 
						|
 | 
						|
using namespace llvm;
 | 
						|
 | 
						|
bool OrcExecutionTest::NativeTargetInitialized = false;
 | 
						|
 | 
						|
ModuleBuilder::ModuleBuilder(LLVMContext &Context, StringRef Triple,
 | 
						|
                             StringRef Name)
 | 
						|
  : M(new Module(Name, Context)) {
 | 
						|
  if (Triple != "")
 | 
						|
    M->setTargetTriple(Triple);
 | 
						|
}
 |