Add a useful accessor
[oota-llvm.git] / include / llvm / CodeGen / ValueSet.h
index 8386e2cbbd92d452dbb9c9a3a281606b7f5b7088..f4bc6e80d444a44d827b4781f11f3c0f50978fa5 100644 (file)
@@ -1,4 +1,11 @@
 //===-- llvm/CodeGen/ValueSet.h ---------------------------------*- 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 header is OBSOLETE, do not use it for new code.
 //
@@ -10,6 +17,9 @@
 #define VALUE_SET_H
 
 #include <set>
+
+namespace llvm {
+
 class Value;
 
 // RAV - Used to print values in a form used by the register allocator.  
@@ -24,4 +34,6 @@ std::ostream &operator<<(std::ostream &out, RAV Val);
 typedef std::set<const Value*> ValueSet;
 void printSet(const ValueSet &S);
 
+} // End llvm namespace
+
 #endif