22 lines · cpp
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-exception6//7//===----------------------------------------------------------------------===//8//9// This file implements the abstract base class GCMetadataPrinter.10//11//===----------------------------------------------------------------------===//12 13#include "llvm/CodeGen/GCMetadataPrinter.h"14 15using namespace llvm;16 17LLVM_INSTANTIATE_REGISTRY(GCMetadataPrinterRegistry)18 19GCMetadataPrinter::GCMetadataPrinter() = default;20 21GCMetadataPrinter::~GCMetadataPrinter() = default;22