diff options
-rw-r--r-- | test/Analysis/operator-calls.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |