Chris Lattner | 14267fc | 2009-09-20 06:45:52 +0000 | [diff] [blame] | 1 | //===-- llvm/CodeGen/X86COFFMachineModuleInfo.cpp -------------------------===// |
| 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 | // This is an MMI implementation for X86 COFF (windows) targets. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "X86COFFMachineModuleInfo.h" |
| 15 | #include "X86MachineFunctionInfo.h" |
| 16 | #include "llvm/DerivedTypes.h" |
| 17 | #include "llvm/Function.h" |
Chris Lattner | c53c24c | 2010-01-16 00:51:39 +0000 | [diff] [blame] | 18 | #include "llvm/MC/MCContext.h" |
| 19 | #include "llvm/MC/MCSymbol.h" |
Chris Lattner | 14267fc | 2009-09-20 06:45:52 +0000 | [diff] [blame] | 20 | #include "llvm/Target/TargetData.h" |
| 21 | #include "llvm/ADT/SmallString.h" |
| 22 | #include "llvm/Support/raw_ostream.h" |
| 23 | using namespace llvm; |
| 24 | |
Chris Lattner | f9b5bd0 | 2010-03-12 19:42:40 +0000 | [diff] [blame] | 25 | |
Chris Lattner | 14267fc | 2009-09-20 06:45:52 +0000 | [diff] [blame] | 26 | X86COFFMachineModuleInfo::~X86COFFMachineModuleInfo() { |
Chris Lattner | 14267fc | 2009-09-20 06:45:52 +0000 | [diff] [blame] | 27 | } |
| 28 | |