blob: a5f4408f7d730ec7df311b914898d0ea8582cb5a [file] [log] [blame]
Jim Laskeyc6a0a112006-08-01 16:31:08 +00001//===-- MachineInstr.cpp --------------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by James M. Laskey and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "llvm/CodeGen/MachinePassRegistry.h"
11#include <iostream>
12
13using namespace llvm;
14
15
16//===---------------------------------------------------------------------===//
17///
18/// RegisterRegAlloc class - Track the registration of register allocators.
19///
20//===---------------------------------------------------------------------===//
21MachinePassRegistry<RegisterRegAlloc::FunctionPassCtor>
22RegisterRegAlloc::Registry;
23
24
25//===---------------------------------------------------------------------===//
26///
27/// RegisterScheduler class - Track the registration of instruction schedulers.
28///
29//===---------------------------------------------------------------------===//
30MachinePassRegistry<RegisterScheduler::FunctionPassCtor>
31RegisterScheduler::Registry;