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 | 03593f72db599f32d089cc1b4fbce3a80e0027c2 (patch) | |
| tree | 06d7237152fbb37394fbf6103b22532cfedb007a /llvm/lib/CodeGen/MachinePassRegistry.cpp | |
| parent | b25c49dd0c72e3938504d8cf25410912b879d454 (diff) | |
| download | bcm5719-llvm-03593f72db599f32d089cc1b4fbce3a80e0027c2.tar.gz bcm5719-llvm-03593f72db599f32d089cc1b4fbce3a80e0027c2.zip | |
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.
llvm-svn: 29450
Diffstat (limited to 'llvm/lib/CodeGen/MachinePassRegistry.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/MachinePassRegistry.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/MachinePassRegistry.cpp b/llvm/lib/CodeGen/MachinePassRegistry.cpp index a5f4408f7d7..c4409924760 100644 --- a/llvm/lib/CodeGen/MachinePassRegistry.cpp +++ b/llvm/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; |

