mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
b6b58bff88
llvm-svn: 96762
20 lines
523 B
C++
20 lines
523 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)
|
|
{
|
|
}
|
|
|
|
TargetAsmBackend::~TargetAsmBackend() {
|
|
}
|