Rafael Espindola | 0a017a6 | 2010-12-10 07:39:47 +0000 | [diff] [blame] | 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" |
Rafael Espindola | 0a017a6 | 2010-12-10 07:39:47 +0000 | [diff] [blame] | 11 | #include "llvm/Target/TargetLowering.h" |
| 12 | #include "llvm/Target/TargetLoweringObjectFile.h" |
| 13 | #include "llvm/Target/TargetMachine.h" |
Rafael Espindola | 0a017a6 | 2010-12-10 07:39:47 +0000 | [diff] [blame] | 14 | using namespace llvm; |
| 15 | |
| 16 | TargetAsmInfo::TargetAsmInfo(const TargetMachine &TM) { |
| 17 | TLOF = &TM.getTargetLowering()->getObjFileLowering(); |
Rafael Espindola | 0a017a6 | 2010-12-10 07:39:47 +0000 | [diff] [blame] | 18 | } |