[llvm-commits] [regalloc_linearscan] CVS: llvm/include/llvm/CodeGen/Passes.h

Alkis Evlogimenos alkis at cs.uiuc.edu
Wed Nov 12 00:33:02 PST 2003


Changes in directory llvm/include/llvm/CodeGen:

Passes.h updated: 1.3.2.5 -> 1.3.2.6

---
Log message:

Mergin from trunk

---
Diffs of the changes:  (+11 -1)

Index: llvm/include/llvm/CodeGen/Passes.h
diff -u llvm/include/llvm/CodeGen/Passes.h:1.3.2.5 llvm/include/llvm/CodeGen/Passes.h:1.3.2.6
--- llvm/include/llvm/CodeGen/Passes.h:1.3.2.5	Thu Oct  2 12:17:03 2003
+++ llvm/include/llvm/CodeGen/Passes.h	Wed Nov 12 00:32:00 2003
@@ -1,4 +1,11 @@
 //===-- Passes.h - Target independent code generation passes ----*- C++ -*-===//
+// 
+//                     The LLVM Compiler Infrastructure
+//
+// This file was developed by the LLVM research group and is distributed under
+// the University of Illinois Open Source License. See LICENSE.TXT for details.
+// 
+//===----------------------------------------------------------------------===//
 //
 // This file defines interfaces to access the target independent code generation
 // passes provided by the LLVM backend.
@@ -8,6 +15,8 @@
 #ifndef LLVM_CODEGEN_PASSES_H
 #define LLVM_CODEGEN_PASSES_H
 
+namespace llvm {
+
 class FunctionPass;
 class PassInfo;
 class TargetMachine;
@@ -46,9 +55,10 @@
 ///
 FunctionPass *createPrologEpilogCodeInserter();
 
-
 /// getRegisterAllocator - This creates an instance of the register allocator
 /// for the Sparc.
 FunctionPass *getRegisterAllocator(TargetMachine &T);
+
+} // End llvm namespace
 
 #endif





More information about the llvm-commits mailing list