2017-06-07 23:53:32 +00:00
|
|
|
//===- GCMetadataPrinter.cpp - Garbage collection infrastructure ----------===//
|
2008-08-17 12:56:54 +00:00
|
|
|
//
|
2019-01-19 08:50:56 +00:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2008-08-17 12:56:54 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2008-08-17 18:44:35 +00:00
|
|
|
// This file implements the abstract base class GCMetadataPrinter.
|
2008-08-17 12:56:54 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2008-08-17 18:44:35 +00:00
|
|
|
#include "llvm/CodeGen/GCMetadataPrinter.h"
|
2017-06-07 23:53:32 +00:00
|
|
|
|
2008-08-17 12:56:54 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2016-08-05 11:01:08 +00:00
|
|
|
LLVM_INSTANTIATE_REGISTRY(GCMetadataPrinterRegistry)
|
|
|
|
|
2017-06-07 23:53:32 +00:00
|
|
|
GCMetadataPrinter::GCMetadataPrinter() = default;
|
2008-08-17 12:56:54 +00:00
|
|
|
|
2017-06-07 23:53:32 +00:00
|
|
|
GCMetadataPrinter::~GCMetadataPrinter() = default;
|