diff options
author | Jim Laskey <jlaskey@mac.com> | 2006-08-01 18:29:48 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2006-08-01 18:29:48 +0000 |
commit | 9ff542f2cce5bf7bf3cf9f692cf3ec0690ad2b3b (patch) | |
tree | 1030dc0480cb653cffe5486e2ec55ad3a81c302d /lib/CodeGen/MachinePassRegistry.cpp | |
parent | 2f2d32437a2bb55bb1dda4805a6ba743183f02a2 (diff) |
1. Change use of "Cache" to "Default".
2. Added argument to instruction scheduler creators so the creators can do
special things.
3. Repaired target hazard code.
4. Misc.
More to follow.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29450 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachinePassRegistry.cpp')
-rw-r--r-- | lib/CodeGen/MachinePassRegistry.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/CodeGen/MachinePassRegistry.cpp b/lib/CodeGen/MachinePassRegistry.cpp index a5f4408f7d..c440992476 100644 --- a/lib/CodeGen/MachinePassRegistry.cpp +++ b/lib/CodeGen/MachinePassRegistry.cpp @@ -1,4 +1,4 @@ -//===-- MachineInstr.cpp --------------------------------------------------===// +//===-- CodeGen/MachineInstr.cpp ------------------------------------------===// // // The LLVM Compiler Infrastructure // @@ -6,9 +6,13 @@ // the University of Illinois Open Source License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// +// +// This file contains the machine function pass registry for register allocators +// and instruction schedulers. +// +//===----------------------------------------------------------------------===// #include "llvm/CodeGen/MachinePassRegistry.h" -#include <iostream> using namespace llvm; |