[PATCH] D53417: [Clang][Sema][PowerPC] Choose a better candidate in overload function call if there is a compatible vector conversion instead of ambiguous call error
Zixuan Wu via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Nov 13 20:52:29 PST 2018
wuzish marked an inline comment as done.
wuzish added inline comments.
================
Comment at: clang/test/SemaCXX/vector.cpp:26
float &fr1 = f1(ll16);
- f1(c16e); // expected-error{{call to 'f1' is ambiguous}}
- f1(ll16e); // expected-error{{call to 'f1' is ambiguous}}
+ f1(c16e);
+ f1(ll16e);
----------------
hubert.reinterpretcast wrote:
> Check the return types here like with the two lines above.
I use pointer or reference return value to distinguish the candidate.
https://reviews.llvm.org/D53417
More information about the cfe-commits
mailing list