17ab83427SDimitry Andric //===- GCMetadataPrinter.cpp - Garbage collection infrastructure ----------===// 2009b1c42SEd Schouten // 3e6d15924SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4e6d15924SDimitry Andric // See https://llvm.org/LICENSE.txt for license information. 5e6d15924SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6009b1c42SEd Schouten // 7009b1c42SEd Schouten //===----------------------------------------------------------------------===// 8009b1c42SEd Schouten // 9009b1c42SEd Schouten // This file implements the abstract base class GCMetadataPrinter. 10009b1c42SEd Schouten // 11009b1c42SEd Schouten //===----------------------------------------------------------------------===// 12009b1c42SEd Schouten 13009b1c42SEd Schouten #include "llvm/CodeGen/GCMetadataPrinter.h" 147ab83427SDimitry Andric 15009b1c42SEd Schouten using namespace llvm; 16009b1c42SEd Schouten 17b915e9e0SDimitry Andric LLVM_INSTANTIATE_REGISTRY(GCMetadataPrinterRegistry) 18b915e9e0SDimitry Andric 197ab83427SDimitry Andric GCMetadataPrinter::GCMetadataPrinter() = default; 20009b1c42SEd Schouten 217ab83427SDimitry Andric GCMetadataPrinter::~GCMetadataPrinter() = default; 22