Coverage Report

Created: 2024-01-17 10:31

/src/llvm-project/llvm/lib/CodeGen/GCMetadataPrinter.cpp
Line
Count
Source (jump to first uncovered line)
1
//===- GCMetadataPrinter.cpp - Garbage collection infrastructure ----------===//
2
//
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
6
//
7
//===----------------------------------------------------------------------===//
8
//
9
// This file implements the abstract base class GCMetadataPrinter.
10
//
11
//===----------------------------------------------------------------------===//
12
13
#include "llvm/CodeGen/GCMetadataPrinter.h"
14
15
using namespace llvm;
16
17
LLVM_INSTANTIATE_REGISTRY(GCMetadataPrinterRegistry)
18
19
0
GCMetadataPrinter::GCMetadataPrinter() = default;
20
21
0
GCMetadataPrinter::~GCMetadataPrinter() = default;