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:
Tanya Lattner 2004-04-30 20:46:40 +00:00
parent 0e1c48b209
commit 32c182a0a8

View File

@ -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;
};