mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-02 08:46:23 +00:00
Fixed friend class name for ModuloSched
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13292 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0e1c48b209
commit
32c182a0a8
@ -67,8 +67,8 @@ struct CPUResource {
|
||||
resourceId_t rid;
|
||||
int maxNumUsers; // MAXINT if no restriction
|
||||
|
||||
CPUResource(const std::string& resourceName, int maxUsers)
|
||||
: rname(resourceName), rid(nextId++), maxNumUsers(maxUsers) {}
|
||||
CPUResource(const std::string& resourceName, int maxUsers);
|
||||
|
||||
private:
|
||||
static resourceId_t nextId;
|
||||
};
|
||||
@ -303,7 +303,7 @@ protected:
|
||||
|
||||
|
||||
|
||||
friend class ModuloSchedulingPass;
|
||||
friend class ModuloScheduling;
|
||||
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user