Ampersand goes with identifier.

llvm-svn: 163410
This commit is contained in:
Chad Rosier 2012-09-07 19:49:55 +00:00
parent 8dc77398a1
commit 37a8563f36
1 changed files with 2 additions and 2 deletions

View File

@ -822,7 +822,7 @@ public:
LockData* findLock(FactManager& FM, const SExpr& M) const {
for (const_iterator I = begin(), E = end(); I != E; ++I) {
const SExpr& Exp = FM[*I].MutID;
const SExpr &Exp = FM[*I].MutID;
if (Exp.matches(M))
return &FM[*I].LDat;
}
@ -831,7 +831,7 @@ public:
LockData* findLockUniv(FactManager& FM, const SExpr& M) const {
for (const_iterator I = begin(), E = end(); I != E; ++I) {
const SExpr& Exp = FM[*I].MutID;
const SExpr &Exp = FM[*I].MutID;
if (Exp.matches(M) || Exp.isUniversal())
return &FM[*I].LDat;
}