blob: 1f104105c121b3ad4683206447eb2892dc0c377c [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),
Daniel Dunbar06829512010-03-18 00:58:53 +000015 HasReliableSymbolDifference(false),
16 HasScatteredSymbols(false)
Daniel Dunbare7bd8862010-02-21 21:53:53 +000017{
18}
19
20TargetAsmBackend::~TargetAsmBackend() {
21}