blob: e28c7ad97c39f365b1bc8565b80c50556011a6e7 [file] [log] [blame]
Chris Lattner14267fc2009-09-20 06:45:52 +00001//===-- 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 Lattnerc53c24c2010-01-16 00:51:39 +000018#include "llvm/MC/MCContext.h"
19#include "llvm/MC/MCSymbol.h"
Chris Lattner14267fc2009-09-20 06:45:52 +000020#include "llvm/Target/TargetData.h"
21#include "llvm/ADT/SmallString.h"
22#include "llvm/Support/raw_ostream.h"
23using namespace llvm;
24
Chris Lattnerf9b5bd02010-03-12 19:42:40 +000025
Chris Lattner14267fc2009-09-20 06:45:52 +000026X86COFFMachineModuleInfo::~X86COFFMachineModuleInfo() {
Chris Lattner14267fc2009-09-20 06:45:52 +000027}
28