summaryrefslogtreecommitdiff
path: root/lib/CodeGen/Collectors.cpp
blob: feeebd5075ed703f7161221acce6933d20fa328b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//===-- Collectors.cpp - Garbage collector registry -----------------------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file was developed by Gordon Henriksen and is distributed under
// the University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file defines the static data members of the CollectorRegistry class.
//
//===----------------------------------------------------------------------===//

#include "llvm/CodeGen/Collectors.h"

using namespace llvm;

template<> CollectorRegistry::node *CollectorRegistry::Head = 0;
template<> CollectorRegistry::node *CollectorRegistry::Tail = 0;
template<> CollectorRegistry::listener *CollectorRegistry::ListenerHead = 0;
template<> CollectorRegistry::listener *CollectorRegistry::ListenerTail = 0;