mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-20 14:29:27 +00:00
MachineInstr* in vector are not const (and never really were)
because operands may be modified directly to set register. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2820 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c920dc714d
commit
1871b2f1c2
@ -32,7 +32,7 @@ class Function;
|
|||||||
class Instruction;
|
class Instruction;
|
||||||
|
|
||||||
typedef std::hash_map<const Value*, LiveRange*> LiveRangeMapType;
|
typedef std::hash_map<const Value*, LiveRange*> LiveRangeMapType;
|
||||||
typedef std::vector<const MachineInstr*> CallRetInstrListType;
|
typedef std::vector<MachineInstr*> CallRetInstrListType;
|
||||||
|
|
||||||
//----------------------------------------------------------------------------
|
//----------------------------------------------------------------------------
|
||||||
// Class LiveRangeInfo
|
// Class LiveRangeInfo
|
||||||
|
@ -32,7 +32,7 @@ class Function;
|
|||||||
class Instruction;
|
class Instruction;
|
||||||
|
|
||||||
typedef std::hash_map<const Value*, LiveRange*> LiveRangeMapType;
|
typedef std::hash_map<const Value*, LiveRange*> LiveRangeMapType;
|
||||||
typedef std::vector<const MachineInstr*> CallRetInstrListType;
|
typedef std::vector<MachineInstr*> CallRetInstrListType;
|
||||||
|
|
||||||
//----------------------------------------------------------------------------
|
//----------------------------------------------------------------------------
|
||||||
// Class LiveRangeInfo
|
// Class LiveRangeInfo
|
||||||
|
Loading…
x
Reference in New Issue
Block a user