Thread Safety Analysis: fix warning.

llvm-svn: 205733
This commit is contained in:
DeLesley Hutchins 2014-04-07 19:51:32 +00:00
parent 204e61bbdf
commit 43fd21a045
1 changed files with 1 additions and 1 deletions

View File

@ -1533,7 +1533,7 @@ public:
static bool compareExprs(SExpr *E1, SExpr* E2) {
TILEqualsComparator Eq;
return Eq.compareExprs(E1, E2);
return Eq.compare(E1, E2);
}
};