blob: 500dba9aea37e3dcf0472a04cf1012c4cca7e47e [file] [log] [blame]
Eugene Zelenko6ac7a342017-06-07 23:53:32 +00001//===- GCMetadataPrinter.cpp - Garbage collection infrastructure ----------===//
Gordon Henriksenbcef14d2008-08-17 12:56:54 +00002//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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
Gordon Henriksenbcef14d2008-08-17 12:56:54 +00006//
7//===----------------------------------------------------------------------===//
8//
Gordon Henriksend930f912008-08-17 18:44:35 +00009// This file implements the abstract base class GCMetadataPrinter.
Gordon Henriksenbcef14d2008-08-17 12:56:54 +000010//
11//===----------------------------------------------------------------------===//
12
Gordon Henriksend930f912008-08-17 18:44:35 +000013#include "llvm/CodeGen/GCMetadataPrinter.h"
Eugene Zelenko6ac7a342017-06-07 23:53:32 +000014
Gordon Henriksenbcef14d2008-08-17 12:56:54 +000015using namespace llvm;
16
John Brawn4d79ec72016-08-05 11:01:08 +000017LLVM_INSTANTIATE_REGISTRY(GCMetadataPrinterRegistry)
18
Eugene Zelenko6ac7a342017-06-07 23:53:32 +000019GCMetadataPrinter::GCMetadataPrinter() = default;
Gordon Henriksenbcef14d2008-08-17 12:56:54 +000020
Eugene Zelenko6ac7a342017-06-07 23:53:32 +000021GCMetadataPrinter::~GCMetadataPrinter() = default;