add an assertion
[oota-llvm.git] / include / llvm / Argument.h
index ca2c567b897e9b21653d71122b93ec2e133809e0..d39c373b0a5893a2734f819c91dae3fc4cbe3bff 100644 (file)
@@ -1,4 +1,11 @@
 //===-- llvm/Argument.h - Definition of the Argument class ------*- 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 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;
 
@@ -49,4 +62,6 @@ public:
   }
 };
 
+} // End llvm namespace
+
 #endif