blob: bbfddbe9e71fb996df65c30848f522c76a77b420 [file] [log] [blame]
Daniel Dunbare7bd8862010-02-21 21:53:53 +00001//===-- TargetAsmBackend.cpp - Target Assembly Backend ---------------------==//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "llvm/Target/TargetAsmBackend.h"
11using namespace llvm;
12
13TargetAsmBackend::TargetAsmBackend(const Target &T)
Daniel Dunbar06829512010-03-18 00:58:53 +000014 : TheTarget(T),
15 HasAbsolutizedSet(false),
16 HasReliableSymbolDifference(false),
17 HasScatteredSymbols(false)
Daniel Dunbare7bd8862010-02-21 21:53:53 +000018{
19}
20
21TargetAsmBackend::~TargetAsmBackend() {
22}