GCMetadataPrinter.cpp 748 B

123456789101112131415161718192021
  1. //===- GCMetadataPrinter.cpp - Garbage collection infrastructure ----------===//
  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. // This file implements the abstract base class GCMetadataPrinter.
  10. //
  11. //===----------------------------------------------------------------------===//
  12. #include "llvm/CodeGen/GCMetadataPrinter.h"
  13. using namespace llvm;
  14. LLVM_INSTANTIATE_REGISTRY(GCMetadataPrinterRegistry)
  15. GCMetadataPrinter::GCMetadataPrinter() = default;
  16. GCMetadataPrinter::~GCMetadataPrinter() = default;