forked from OSchip/llvm-project
MachineInstr* in vector are not const (and never really were)
because operands may be modified directly to set register. llvm-svn: 2820
This commit is contained in:
parent
50684c092d
commit
ff045b2e18
|
@ -32,7 +32,7 @@ class Function;
|
|||
class Instruction;
|
||||
|
||||
typedef std::hash_map<const Value*, LiveRange*> LiveRangeMapType;
|
||||
typedef std::vector<const MachineInstr*> CallRetInstrListType;
|
||||
typedef std::vector<MachineInstr*> CallRetInstrListType;
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
// Class LiveRangeInfo
|
||||
|
|
Loading…
Reference in New Issue