Gordon Henriksen | d930f91 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 1 | //===-- GCMetadataPrinter.cpp - Garbage collection infrastructure ---------===// |
Gordon Henriksen | bcef14d | 2008-08-17 12:56:54 +0000 | [diff] [blame] | 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 | // |
Gordon Henriksen | d930f91 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 10 | // This file implements the abstract base class GCMetadataPrinter. |
Gordon Henriksen | bcef14d | 2008-08-17 12:56:54 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Gordon Henriksen | d930f91 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 14 | #include "llvm/CodeGen/GCMetadataPrinter.h" |
Gordon Henriksen | bcef14d | 2008-08-17 12:56:54 +0000 | [diff] [blame] | 15 | using namespace llvm; |
| 16 | |
John Brawn | 4d79ec7 | 2016-08-05 11:01:08 +0000 | [diff] [blame] | 17 | LLVM_INSTANTIATE_REGISTRY(GCMetadataPrinterRegistry) |
| 18 | |
Philip Reames | 3631953 | 2015-01-16 23:16:12 +0000 | [diff] [blame] | 19 | GCMetadataPrinter::GCMetadataPrinter() {} |
Gordon Henriksen | bcef14d | 2008-08-17 12:56:54 +0000 | [diff] [blame] | 20 | |
Philip Reames | 3631953 | 2015-01-16 23:16:12 +0000 | [diff] [blame] | 21 | GCMetadataPrinter::~GCMetadataPrinter() {} |