blob: bb8cfa1cc809c33e7b09cf4566c0a4e64bcf4725 [file] [log] [blame]
Shih-wei Liaoe264f622010-02-10 11:10:31 -08001//===-- GCMetadataPrinter.cpp - Garbage collection infrastructure ---------===//
2//
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//
10// This file implements the abstract base class GCMetadataPrinter.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/GCMetadataPrinter.h"
Shih-wei Liaoe264f622010-02-10 11:10:31 -080015using namespace llvm;
16
Stephen Hinesebe69fe2015-03-23 12:10:34 -070017GCMetadataPrinter::GCMetadataPrinter() {}
Shih-wei Liaoe264f622010-02-10 11:10:31 -080018
Stephen Hinesebe69fe2015-03-23 12:10:34 -070019GCMetadataPrinter::~GCMetadataPrinter() {}