• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //===-- 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"
11 #include "llvm/Target/TargetLowering.h"
12 #include "llvm/Target/TargetLoweringObjectFile.h"
13 #include "llvm/Target/TargetMachine.h"
14 using namespace llvm;
15 
TargetAsmInfo(const TargetMachine & TM)16 TargetAsmInfo::TargetAsmInfo(const TargetMachine &TM) {
17   TLOF = &TM.getTargetLowering()->getObjFileLowering();
18 }
19