blob: a5d0f5a2cb7509dd88021b84881ae4c6fa1460ad [file] [log] [blame]
Peter Collingbourned735fd72016-10-10 22:49:37 +00001//===- lib/MC/MCWinEH.cpp - Windows EH implementation ---------------------===//
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
Chandler Carruthe3e43d92017-06-06 11:49:48 +000010#include "llvm/MC/MCWinEH.h"
Peter Collingbourned735fd72016-10-10 22:49:37 +000011#include "llvm/ADT/StringRef.h"
Zachary Turner19ca2b02017-06-07 03:48:56 +000012#include "llvm/BinaryFormat/COFF.h"
Peter Collingbourned735fd72016-10-10 22:49:37 +000013#include "llvm/MC/MCContext.h"
14#include "llvm/MC/MCObjectFileInfo.h"
15#include "llvm/MC/MCSectionCOFF.h"
16#include "llvm/MC/MCStreamer.h"
17#include "llvm/MC/MCSymbol.h"
Peter Collingbourned735fd72016-10-10 22:49:37 +000018
19namespace llvm {
20namespace WinEH {
21
22UnwindEmitter::~UnwindEmitter() {}
23
24}
25}
26