Remove all traces of the "Opcode Mask" field in the MachineInstr class
[oota-llvm.git] / include / llvm / CodeGen / ValueSet.h
1 #ifndef VALUE_SET_H
2 #define VALUE_SET_H
3
4 #include <set>
5 class Value;
6
7 // RAV - Used to print values in a form used by the register allocator.  
8 //
9 struct RAV {  // Register Allocator Value
10   const Value &V;
11   RAV(const Value *v) : V(*v) {}
12   RAV(const Value &v) : V(v) {}
13 };
14 std::ostream &operator<<(std::ostream &out, RAV Val);
15
16
17 typedef std::set<const Value*> ValueSet;
18 void printSet(const ValueSet &S);
19
20 #endif