aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/MachinePassRegistry.cpp
diff options
context:
space:
mode:
authorJim Laskey <jlaskey@mac.com>2006-08-01 18:29:48 +0000
committerJim Laskey <jlaskey@mac.com>2006-08-01 18:29:48 +0000
commit03593f72db599f32d089cc1b4fbce3a80e0027c2 (patch)
tree06d7237152fbb37394fbf6103b22532cfedb007a /llvm/lib/CodeGen/MachinePassRegistry.cpp
parentb25c49dd0c72e3938504d8cf25410912b879d454 (diff)
downloadllvm-03593f72db599f32d089cc1b4fbce3a80e0027c2.zip
llvm-03593f72db599f32d089cc1b4fbce3a80e0027c2.tar.gz
llvm-03593f72db599f32d089cc1b4fbce3a80e0027c2.tar.bz2
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.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/MachinePassRegistry.cpp b/llvm/lib/CodeGen/MachinePassRegistry.cpp
index a5f4408..c440992 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;