1*fe6060f1SDimitry Andric //===- GCStrategy.cpp - Garbage Collector Description ---------------------===// 2*fe6060f1SDimitry Andric // 3*fe6060f1SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*fe6060f1SDimitry Andric // See https://llvm.org/LICENSE.txt for license information. 5*fe6060f1SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*fe6060f1SDimitry Andric // 7*fe6060f1SDimitry Andric //===----------------------------------------------------------------------===// 8*fe6060f1SDimitry Andric // 9*fe6060f1SDimitry Andric // This file implements the policy object GCStrategy which describes the 10*fe6060f1SDimitry Andric // behavior of a given garbage collector. 11*fe6060f1SDimitry Andric // 12*fe6060f1SDimitry Andric //===----------------------------------------------------------------------===// 13*fe6060f1SDimitry Andric 14*fe6060f1SDimitry Andric #include "llvm/IR/GCStrategy.h" 15*fe6060f1SDimitry Andric 16*fe6060f1SDimitry Andric using namespace llvm; 17*fe6060f1SDimitry Andric 18*fe6060f1SDimitry Andric LLVM_INSTANTIATE_REGISTRY(GCRegistry) 19*fe6060f1SDimitry Andric 20*fe6060f1SDimitry Andric GCStrategy::GCStrategy() = default; 21