[llvm-exegesis][NFC] Pass Instruction instead of bare Opcode
[llvm-core.git] / lib / CodeGen / GCStrategy.cpp
blob6be4c16c6301e750f957e02b4fd1cc31138aa9a4
1 //===- GCStrategy.cpp - Garbage Collector Description ---------------------===//
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 policy object GCStrategy which describes the
11 // behavior of a given garbage collector.
13 //===----------------------------------------------------------------------===//
15 #include "llvm/CodeGen/GCStrategy.h"
17 using namespace llvm;
19 LLVM_INSTANTIATE_REGISTRY(GCRegistry)
21 GCStrategy::GCStrategy() = default;