Move some methods out of MachineInstr into MachineOperand
[oota-llvm.git] / include / llvm / CodeGen / ValueSet.h
index 8386e2cbbd92d452dbb9c9a3a281606b7f5b7088..558e7489d1abe533d2209b9c3b2ece506ca3c14e 100644 (file)
@@ -1,5 +1,12 @@
 //===-- 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.
 //
 // FIXME: Eliminate this file.
 #define VALUE_SET_H
 
 #include <set>
+
+namespace llvm {
+
 class Value;
 
-// RAV - Used to print values in a form used by the register allocator.  
+// RAV - Used to print values in a form used by the register allocator.
 //
 struct RAV {  // Register Allocator Value
   const Value &V;
@@ -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