public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/57572] New: vector operators don't participate in overload resolution
@ 2013-06-09 14:42 glisse at gcc dot gnu.org
  2013-10-12 19:36 ` [Bug c++/57572] " glisse at gcc dot gnu.org
  2021-08-12 14:47 ` pinskia at gcc dot gnu.org
  0 siblings, 2 replies; 3+ messages in thread
From: glisse at gcc dot gnu.org @ 2013-06-09 14:42 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=57572

            Bug ID: 57572
           Summary: vector operators don't participate in overload
                    resolution
           Product: gcc
           Version: 4.9.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: glisse at gcc dot gnu.org

typedef int vec __attribute__((vector_size(4*sizeof(int))));
struct A{
  operator vec()const;
};
vec f(vec x, A y){
  return x<y;
}

e.cc: In function 'vec f(vec, A)':
e.cc:6:11: error: no match for 'operator<' (operand types are 'vec {aka
__vector(4) int}' and 'A')
   return x<y;
           ^

I think this happens around add_builtin_candidate(s) for scalars.


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-08-12 14:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-06-09 14:42 [Bug c++/57572] New: vector operators don't participate in overload resolution glisse at gcc dot gnu.org
2013-10-12 19:36 ` [Bug c++/57572] " glisse at gcc dot gnu.org
2021-08-12 14:47 ` pinskia at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).