blob: f5286efaab3a6642c47bba59665e6a9b803fb28f [file] [log] [blame]
Chris Lattnerbf573372004-07-11 02:44:26 +00001//===-- TargetMachineRegistry.cpp - Target Auto Registration Impl ---------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file exposes the RegisterTarget class, which TargetMachine
11// implementations should use to register themselves with the system. This file
12// also exposes the TargetMachineRegistry class, which allows tools to inspect
13// all of registered targets.
14//
15//===----------------------------------------------------------------------===//
16
17#include "llvm/Target/TargetMachineRegistry.h"
18using namespace llvm;
19
20const TargetMachineRegistry::Entry *TargetMachineRegistry::List = 0;
21