mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-22 03:28:35 +00:00
32 lines
1.1 KiB
C++
32 lines
1.1 KiB
C++
|
//===-- MachineInstr.cpp --------------------------------------------------===//
|
||
|
//
|
||
|
// The LLVM Compiler Infrastructure
|
||
|
//
|
||
|
// This file was developed by James M. Laskey and is distributed under
|
||
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#include "llvm/CodeGen/MachinePassRegistry.h"
|
||
|
#include <iostream>
|
||
|
|
||
|
using namespace llvm;
|
||
|
|
||
|
|
||
|
//===---------------------------------------------------------------------===//
|
||
|
///
|
||
|
/// RegisterRegAlloc class - Track the registration of register allocators.
|
||
|
///
|
||
|
//===---------------------------------------------------------------------===//
|
||
|
MachinePassRegistry<RegisterRegAlloc::FunctionPassCtor>
|
||
|
RegisterRegAlloc::Registry;
|
||
|
|
||
|
|
||
|
//===---------------------------------------------------------------------===//
|
||
|
///
|
||
|
/// RegisterScheduler class - Track the registration of instruction schedulers.
|
||
|
///
|
||
|
//===---------------------------------------------------------------------===//
|
||
|
MachinePassRegistry<RegisterScheduler::FunctionPassCtor>
|
||
|
RegisterScheduler::Registry;
|