commit | e5a6fed7dc77652c951ba878cb306a7c19a45abd | [log] [tgz] |
---|---|---|
author | Douglas Gregor <dgregor@apple.com> | Mon Nov 01 23:33:11 2010 +0000 |
committer | Douglas Gregor <dgregor@apple.com> | Mon Nov 01 23:33:11 2010 +0000 |
tree | 67df849db27b010e598f4541ee8a5030430e2895 | |
parent | 818e5c1839eead75e3e409ab60a2bb1f0be9a54f [diff] [blame] |
Make my test case test what it meant to llvm-svn: 117974
diff --git a/clang/test/Analysis/operator-calls.cpp b/clang/test/Analysis/operator-calls.cpp index 1b8b629..892a1ab 100644 --- a/clang/test/Analysis/operator-calls.cpp +++ b/clang/test/Analysis/operator-calls.cpp
@@ -12,5 +12,5 @@ } bool PR7287(X0 a, X0 b) { - return a == b; + return operator==(a, b); }