blob: e58a0b2cf6540cd445b85387fd460c522dbf44ec [file] [log] [blame]
Peter Collingbourne0da86302016-10-10 22:49:37 +00001//===- lib/MC/MCWinEH.cpp - Windows EH implementation ---------------------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Peter Collingbourne0da86302016-10-10 22:49:37 +00006//
7//===----------------------------------------------------------------------===//
8
Chandler Carruth6bda14b2017-06-06 11:49:48 +00009#include "llvm/MC/MCWinEH.h"
Peter Collingbourne0da86302016-10-10 22:49:37 +000010#include "llvm/ADT/StringRef.h"
Zachary Turner264b5d92017-06-07 03:48:56 +000011#include "llvm/BinaryFormat/COFF.h"
Peter Collingbourne0da86302016-10-10 22:49:37 +000012#include "llvm/MC/MCContext.h"
13#include "llvm/MC/MCObjectFileInfo.h"
14#include "llvm/MC/MCSectionCOFF.h"
15#include "llvm/MC/MCStreamer.h"
16#include "llvm/MC/MCSymbol.h"
Peter Collingbourne0da86302016-10-10 22:49:37 +000017
18namespace llvm {
19namespace WinEH {
20
21UnwindEmitter::~UnwindEmitter() {}
22
23}
24}
25