Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 1 | //===- GCMetadataPrinter.cpp - Garbage collection infrastructure ----------===// |
Gordon Henriksen | bcef14d | 2008-08-17 12:56:54 +0000 | [diff] [blame] | 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // 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 Henriksen | bcef14d | 2008-08-17 12:56:54 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
Gordon Henriksen | d930f91 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 9 | // This file implements the abstract base class GCMetadataPrinter. |
Gordon Henriksen | bcef14d | 2008-08-17 12:56:54 +0000 | [diff] [blame] | 10 | // |
| 11 | //===----------------------------------------------------------------------===// |
| 12 | |
Gordon Henriksen | d930f91 | 2008-08-17 18:44:35 +0000 | [diff] [blame] | 13 | #include "llvm/CodeGen/GCMetadataPrinter.h" |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 14 | |
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 | |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 19 | GCMetadataPrinter::GCMetadataPrinter() = default; |
Gordon Henriksen | bcef14d | 2008-08-17 12:56:54 +0000 | [diff] [blame] | 20 | |
Eugene Zelenko | 6ac7a34 | 2017-06-07 23:53:32 +0000 | [diff] [blame] | 21 | GCMetadataPrinter::~GCMetadataPrinter() = default; |