1 //===- lib/MC/MCWinEH.cpp - Windows EH implementation ---------------------===// 2 // 3 // 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 6 // 7 //===----------------------------------------------------------------------===// 8 9 #include "llvm/MC/MCWinEH.h" 10 #include "llvm/ADT/StringRef.h" 11 #include "llvm/BinaryFormat/COFF.h" 12 #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" 17 18 namespace llvm { 19 namespace WinEH { 20 ~UnwindEmitter()21UnwindEmitter::~UnwindEmitter() {} 22 23 } 24 } 25 26