Rename getEntryNode -> getEntryBlock()
[oota-llvm.git] / include / llvm / CodeGen / ValueSet.h
1 //
2 // VALUESET.H - This header is OBSOLETE, do not use it for new code.
3 //
4 // FIXME: Eliminate this file.
5
6 #ifndef VALUE_SET_H
7 #define VALUE_SET_H
8
9 #include <set>
10 class Value;
11
12 // RAV - Used to print values in a form used by the register allocator.  
13 //
14 struct RAV {  // Register Allocator Value
15   const Value &V;
16   RAV(const Value *v) : V(*v) {}
17   RAV(const Value &v) : V(v) {}
18 };
19 std::ostream &operator<<(std::ostream &out, RAV Val);
20
21
22 typedef std::set<const Value*> ValueSet;
23 void printSet(const ValueSet &S);
24
25 #endif