2010-02-21 21:53:53 +00:00
|
|
|
//===-- 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)
|
2010-03-18 00:58:53 +00:00
|
|
|
: TheTarget(T),
|
|
|
|
HasAbsolutizedSet(false),
|
|
|
|
HasReliableSymbolDifference(false),
|
|
|
|
HasScatteredSymbols(false)
|
2010-02-21 21:53:53 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
TargetAsmBackend::~TargetAsmBackend() {
|
|
|
|
}
|