Initial impl of this file. Yes this is pretty useless right now, but it

will grow in time.

llvm-svn: 14743
This commit is contained in:
Chris Lattner 2004-07-11 02:44:26 +00:00
parent ab2a7f4336
commit 5842560090
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
//===-- TargetMachineRegistry.cpp - Target Auto Registration Impl ---------===//
//
// The LLVM Compiler Infrastructure
//
// This file was developed by the LLVM research group and is distributed under
// the University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file exposes the RegisterTarget class, which TargetMachine
// implementations should use to register themselves with the system. This file
// also exposes the TargetMachineRegistry class, which allows tools to inspect
// all of registered targets.
//
//===----------------------------------------------------------------------===//
#include "llvm/Target/TargetMachineRegistry.h"
using namespace llvm;
const TargetMachineRegistry::Entry *TargetMachineRegistry::List = 0;