add a new map
[oota-llvm.git] / include / llvm / Argument.h
index 03690ea37e6c8e0d24b37b42251bccfa45447355..3c38cdea037137f66b99ede2edc5cf12b5b0b181 100644 (file)
@@ -1,6 +1,13 @@
-//===-- llvm/Argument.h - Definition of the Argument class -------*- C++ -*--=//
+//===-- llvm/Argument.h - Definition of the Argument class ------*- C++ -*-===//
+// 
+//                     The LLVM Compiler Infrastructure
 //
-// This file defines the Argument class, which represents and incoming formal
+// 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 the Argument class, which represents an incoming formal
 // argument to a Function.
 //
 //===----------------------------------------------------------------------===//
 
 #include "llvm/Value.h"
 
+namespace llvm {
+
+template<typename SC> struct ilist_traits;
+template<typename ValueSubClass, typename ItemParentClass, typename SymTabClass,
+         typename SubClass> class SymbolTableListTraits;
+
 class Argument : public Value {  // Defined in the Function.cpp file
   Function *Parent;
 
   Argument *Prev, *Next; // Next and Prev links for our intrusive linked list
   void setNext(Argument *N) { Next = N; }
   void setPrev(Argument *N) { Prev = N; }
-  friend class SymbolTableListTraits<Argument, Function, Function>;
+  friend class SymbolTableListTraits<Argument, Function, Function,
+                                     ilist_traits<Argument> >;
   void setParent(Function *parent);
 
 public:
@@ -25,9 +39,6 @@ public:
   ///
   Argument(const Type *Ty, const std::string &Name = "", Function *F = 0);
 
-  /// setName - Specialize setName to handle symbol table majik...
-  virtual void setName(const std::string &name, SymbolTable *ST = 0);
-
   inline const Function *getParent() const { return Parent; }
   inline       Function *getParent()       { return Parent; }
  
@@ -48,4 +59,6 @@ public:
   }
 };
 
+} // End llvm namespace
+
 #endif