2010-02-21 22:53:53 +01: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;
|
|
|
|
|
2010-11-26 05:24:21 +01:00
|
|
|
TargetAsmBackend::TargetAsmBackend()
|
|
|
|
: HasReliableSymbolDifference(false),
|
2010-03-18 01:58:53 +01:00
|
|
|
HasScatteredSymbols(false)
|
2010-02-21 22:53:53 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
TargetAsmBackend::~TargetAsmBackend() {
|
|
|
|
}
|