diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-09-07 19:49:55 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-09-07 19:49:55 +0000 |
commit | 589190b322a255c8e8b15dfde6b77ef498db7548 (patch) | |
tree | 65fa87f3eabc7b8bc67ae2ff59ef46cf7c35991b /lib/Analysis/ThreadSafety.cpp | |
parent | 9198c71a626e2f0d29d92152832f3e80f4af59b3 (diff) |
Ampersand goes with identifier.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@163410 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/ThreadSafety.cpp')
-rw-r--r-- | lib/Analysis/ThreadSafety.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Analysis/ThreadSafety.cpp b/lib/Analysis/ThreadSafety.cpp index 06ae32c3f1..9c5fb1a145 100644 --- a/lib/Analysis/ThreadSafety.cpp +++ b/lib/Analysis/ThreadSafety.cpp @@ -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; } |