mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-26 12:20:42 +00:00
*** empty log message ***
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3056 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -211,14 +211,14 @@ private:
|
||||
|
||||
class SchedGraph :
|
||||
public NonCopyable,
|
||||
private std::hash_map<const MachineInstr*, SchedGraphNode*>
|
||||
private hash_map<const MachineInstr*, SchedGraphNode*>
|
||||
{
|
||||
private:
|
||||
std::vector<const BasicBlock*> bbVec; // basic blocks included in the graph
|
||||
SchedGraphNode* graphRoot; // the root and leaf are not inserted
|
||||
SchedGraphNode* graphLeaf; // in the hash_map (see getNumNodes())
|
||||
|
||||
typedef std::hash_map<const MachineInstr*, SchedGraphNode*> map_base;
|
||||
typedef hash_map<const MachineInstr*, SchedGraphNode*> map_base;
|
||||
public:
|
||||
using map_base::iterator;
|
||||
using map_base::const_iterator;
|
||||
|
||||
Reference in New Issue
Block a user