blob: d183c7f2980b0296ac3d149426065fe434e395f8 [file] [log] [blame]
Gordon Henriksend930f912008-08-17 18:44:35 +00001//===-- GCMetadataPrinter.cpp - Garbage collection infrastructure ---------===//
Gordon Henriksenbcef14d2008-08-17 12:56:54 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Gordon Henriksend930f912008-08-17 18:44:35 +000010// This file implements the abstract base class GCMetadataPrinter.
Gordon Henriksenbcef14d2008-08-17 12:56:54 +000011//
12//===----------------------------------------------------------------------===//
13
Gordon Henriksend930f912008-08-17 18:44:35 +000014#include "llvm/CodeGen/GCMetadataPrinter.h"
Gordon Henriksenbcef14d2008-08-17 12:56:54 +000015using namespace llvm;
16
John Brawn4d79ec72016-08-05 11:01:08 +000017LLVM_INSTANTIATE_REGISTRY(GCMetadataPrinterRegistry)
18
Philip Reames36319532015-01-16 23:16:12 +000019GCMetadataPrinter::GCMetadataPrinter() {}
Gordon Henriksenbcef14d2008-08-17 12:56:54 +000020
Philip Reames36319532015-01-16 23:16:12 +000021GCMetadataPrinter::~GCMetadataPrinter() {}