Remove attribution from file headers, per discussion on llvmdev.
[oota-llvm.git] / lib / CodeGen / Collectors.cpp
1 //===-- Collectors.cpp - Garbage collector registry -----------------------===//
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 defines the static data members of the CollectorRegistry class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/CodeGen/Collectors.h"
15
16 using namespace llvm;
17
18 template<> CollectorRegistry::node *CollectorRegistry::Head = 0;
19 template<> CollectorRegistry::node *CollectorRegistry::Tail = 0;
20 template<> CollectorRegistry::listener *CollectorRegistry::ListenerHead = 0;
21 template<> CollectorRegistry::listener *CollectorRegistry::ListenerTail = 0;