2017-02-27 22:45:06 +00:00
|
|
|
//===- GCStrategy.cpp - Garbage Collector Description ---------------------===//
|
2007-09-29 02:13:43 +00:00
|
|
|
//
|
2019-01-19 08:50:56 +00:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2007-09-29 02:13:43 +00:00
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
//
|
2015-01-15 19:29:42 +00:00
|
|
|
// This file implements the policy object GCStrategy which describes the
|
|
|
|
|
// behavior of a given garbage collector.
|
2008-08-17 18:44:35 +00:00
|
|
|
//
|
2007-09-29 02:13:43 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
2015-01-26 18:26:35 +00:00
|
|
|
#include "llvm/CodeGen/GCStrategy.h"
|
2015-01-25 15:05:36 +00:00
|
|
|
|
2007-09-29 02:13:43 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
2016-08-05 11:01:08 +00:00
|
|
|
LLVM_INSTANTIATE_REGISTRY(GCRegistry)
|
|
|
|
|
|
2017-02-27 22:45:06 +00:00
|
|
|
GCStrategy::GCStrategy() = default;
|