22 lines
		
	
	
		
			595 B
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			595 B
		
	
	
	
		
			C++
		
	
	
	
//===-- TargetAsmBackend.cpp - Target Assembly Backend ---------------------==//
 | 
						|
//
 | 
						|
//                     The LLVM Compiler Infrastructure
 | 
						|
//
 | 
						|
// This file is distributed under the University of Illinois Open Source
 | 
						|
// License. See LICENSE.TXT for details.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
 | 
						|
#include "llvm/Target/TargetAsmBackend.h"
 | 
						|
using namespace llvm;
 | 
						|
 | 
						|
TargetAsmBackend::TargetAsmBackend(const Target &T)
 | 
						|
  : TheTarget(T),
 | 
						|
    HasReliableSymbolDifference(false),
 | 
						|
    HasScatteredSymbols(false)
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
TargetAsmBackend::~TargetAsmBackend() {
 | 
						|
}
 |