MCWinEH.cpp 711 B

12345678910111213141516171819202122232425
  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. #include "llvm/MC/MCWinEH.h"
  9. #include "llvm/ADT/StringRef.h"
  10. #include "llvm/BinaryFormat/COFF.h"
  11. #include "llvm/MC/MCContext.h"
  12. #include "llvm/MC/MCObjectFileInfo.h"
  13. #include "llvm/MC/MCSectionCOFF.h"
  14. #include "llvm/MC/MCStreamer.h"
  15. #include "llvm/MC/MCSymbol.h"
  16. namespace llvm {
  17. namespace WinEH {
  18. UnwindEmitter::~UnwindEmitter() {}
  19. }
  20. }