[cfe-commits] r117974 - /cfe/trunk/test/Analysis/operator-calls.cpp

Ted Kremenek kremenek at apple.com
Mon Nov 1 16:36:19 PDT 2010


Thanks Doug.  This was the point that I was confused about in my earlier comments.

On Nov 1, 2010, at 4:33 PM, Douglas Gregor wrote:

> Author: dgregor
> Date: Mon Nov  1 18:33:11 2010
> New Revision: 117974
> 
> URL: http://llvm.org/viewvc/llvm-project?rev=117974&view=rev
> Log:
> Make my test case test what it meant to
> 
> Modified:
>    cfe/trunk/test/Analysis/operator-calls.cpp
> 
> Modified: cfe/trunk/test/Analysis/operator-calls.cpp
> URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Analysis/operator-calls.cpp?rev=117974&r1=117973&r2=117974&view=diff
> ==============================================================================
> --- cfe/trunk/test/Analysis/operator-calls.cpp (original)
> +++ cfe/trunk/test/Analysis/operator-calls.cpp Mon Nov  1 18:33:11 2010
> @@ -12,5 +12,5 @@
> }
> 
> bool PR7287(X0 a, X0 b) {
> -  return a == b;
> +  return operator==(a, b);
> }
> 
> 
> _______________________________________________
> cfe-commits mailing list
> cfe-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits





More information about the cfe-commits mailing list