blob: 94f56f63ed3c53df3f3ca897a81fdd1c8972ce1a [file] [log] [blame]
Rafael Espindola0a017a62010-12-10 07:39:47 +00001//===-- llvm/Target/TargetAsmInfo.cpp - Target Assembly Info --------------===//
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/TargetAsmInfo.h"
Rafael Espindola0a017a62010-12-10 07:39:47 +000011#include "llvm/Target/TargetLowering.h"
12#include "llvm/Target/TargetLoweringObjectFile.h"
13#include "llvm/Target/TargetMachine.h"
Rafael Espindola0a017a62010-12-10 07:39:47 +000014using namespace llvm;
15
16TargetAsmInfo::TargetAsmInfo(const TargetMachine &TM) {
17 TLOF = &TM.getTargetLowering()->getObjFileLowering();
Rafael Espindola0a017a62010-12-10 07:39:47 +000018}