From: Douglas Gregor Date: Mon, 1 Nov 2010 23:33:11 +0000 (+0000) Subject: Make my test case test what it meant to X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=73a48ad77c04987730a2469ef334a752dff94894;p=clang Make my test case test what it meant to git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@117974 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Analysis/operator-calls.cpp b/test/Analysis/operator-calls.cpp index 1b8b629f35..892a1ab076 100644 --- a/test/Analysis/operator-calls.cpp +++ b/test/Analysis/operator-calls.cpp @@ -12,5 +12,5 @@ void t2() { } bool PR7287(X0 a, X0 b) { - return a == b; + return operator==(a, b); }