public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/29143] address-of overloaded function does not work in function call
       [not found] <bug-29143-4@http.gcc.gnu.org/bugzilla/>
@ 2013-05-05  0:59 ` paolo.carlini at oracle dot com
  2013-08-21  9:55 ` paolo.carlini at oracle dot com
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: paolo.carlini at oracle dot com @ 2013-05-05  0:59 UTC (permalink / raw)
  To: gcc-bugs


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

Paolo Carlini <paolo.carlini at oracle dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
                 CC|gcc-bugs at gcc dot gnu.org |
         AssignedTo|unassigned at gcc dot       |paolo.carlini at oracle dot
                   |gnu.org                     |com

--- Comment #3 from Paolo Carlini <paolo.carlini at oracle dot com> 2013-05-05 00:58:59 UTC ---
Looking into it, seems doable.


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

* [Bug c++/29143] address-of overloaded function does not work in function call
       [not found] <bug-29143-4@http.gcc.gnu.org/bugzilla/>
  2013-05-05  0:59 ` [Bug c++/29143] address-of overloaded function does not work in function call paolo.carlini at oracle dot com
@ 2013-08-21  9:55 ` paolo.carlini at oracle dot com
  2013-11-16  9:54 ` paolo at gcc dot gnu.org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: paolo.carlini at oracle dot com @ 2013-08-21  9:55 UTC (permalink / raw)
  To: gcc-bugs

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

Paolo Carlini <paolo.carlini at oracle dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |NEW
           Assignee|paolo.carlini at oracle dot com    |unassigned at gcc dot gnu.org

--- Comment #4 from Paolo Carlini <paolo.carlini at oracle dot com> ---
Not actively working on this.


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

* [Bug c++/29143] address-of overloaded function does not work in function call
       [not found] <bug-29143-4@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2013-11-16  9:54 ` paolo at gcc dot gnu.org
@ 2013-11-16  9:54 ` paolo at gcc dot gnu.org
  2013-11-16  9:55 ` paolo.carlini at oracle dot com
  4 siblings, 0 replies; 7+ messages in thread
From: paolo at gcc dot gnu.org @ 2013-11-16  9:54 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #6 from paolo at gcc dot gnu.org <paolo at gcc dot gnu.org> ---
Author: paolo
Date: Sat Nov 16 09:54:23 2013
New Revision: 204898

URL: http://gcc.gnu.org/viewcvs?rev=204898&root=gcc&view=rev
Log:
/cp
2013-11-16  Paolo Carlini  <paolo.carlini@oracle.com>

    PR c++/29143
    * semantics.c (finish_call_expr): Ensure that for OVERLOADs too
    '(&f)(...)' is the same as '(f)(...)', per 13.3.1.1.

/testsuite
2013-11-16  Paolo Carlini  <paolo.carlini@oracle.com>

    PR c++/29143
    * g++.dg/overload/addr2.C: New.
    * g++.old-deja/g++.other/overload11.C: Adjust.

Added:
    trunk/gcc/testsuite/g++.dg/overload/addr2.C
Modified:
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/g++.old-deja/g++.other/overload11.C


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

* [Bug c++/29143] address-of overloaded function does not work in function call
       [not found] <bug-29143-4@http.gcc.gnu.org/bugzilla/>
  2013-05-05  0:59 ` [Bug c++/29143] address-of overloaded function does not work in function call paolo.carlini at oracle dot com
  2013-08-21  9:55 ` paolo.carlini at oracle dot com
@ 2013-11-16  9:54 ` paolo at gcc dot gnu.org
  2013-11-16  9:54 ` paolo at gcc dot gnu.org
  2013-11-16  9:55 ` paolo.carlini at oracle dot com
  4 siblings, 0 replies; 7+ messages in thread
From: paolo at gcc dot gnu.org @ 2013-11-16  9:54 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #7 from paolo at gcc dot gnu.org <paolo at gcc dot gnu.org> ---
Author: paolo
Date: Sat Nov 16 09:54:42 2013
New Revision: 204899

URL: http://gcc.gnu.org/viewcvs?rev=204899&root=gcc&view=rev
Log:
/cp
2013-11-16  Paolo Carlini  <paolo.carlini@oracle.com>

    PR c++/29143
    * semantics.c (finish_call_expr): Ensure that for OVERLOADs too
    '(&f)(...)' is the same as '(f)(...)', per 13.3.1.1.

/testsuite
2013-11-16  Paolo Carlini  <paolo.carlini@oracle.com>

    PR c++/29143
    * g++.dg/overload/addr2.C: New.
    * g++.old-deja/g++.other/overload11.C: Adjust.

Modified:
    trunk/gcc/cp/ChangeLog
    trunk/gcc/cp/semantics.c


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

* [Bug c++/29143] address-of overloaded function does not work in function call
       [not found] <bug-29143-4@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2013-11-16  9:54 ` paolo at gcc dot gnu.org
@ 2013-11-16  9:55 ` paolo.carlini at oracle dot com
  4 siblings, 0 replies; 7+ messages in thread
From: paolo.carlini at oracle dot com @ 2013-11-16  9:55 UTC (permalink / raw)
  To: gcc-bugs

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

Paolo Carlini <paolo.carlini at oracle dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|---                         |FIXED
           Assignee|paolo.carlini at oracle dot com    |unassigned at gcc dot gnu.org

--- Comment #8 from Paolo Carlini <paolo.carlini at oracle dot com> ---
Fixed for 4.9.0.


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

* [Bug c++/29143] address-of overloaded function does not work in function call
  2006-09-19 15:00 [Bug c++/29143] New: " andrew dot stubbs at st dot com
  2006-09-20  6:58 ` [Bug c++/29143] " pinskia at gcc dot gnu dot org
@ 2008-08-10 23:16 ` pinskia at gcc dot gnu dot org
  1 sibling, 0 replies; 7+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2008-08-10 23:16 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from pinskia at gcc dot gnu dot org  2008-08-10 23:15 -------
*** Bug 36975 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jens dot maurer at gmx dot
                   |                            |net


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


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

* [Bug c++/29143] address-of overloaded function does not work in function call
  2006-09-19 15:00 [Bug c++/29143] New: " andrew dot stubbs at st dot com
@ 2006-09-20  6:58 ` pinskia at gcc dot gnu dot org
  2008-08-10 23:16 ` pinskia at gcc dot gnu dot org
  1 sibling, 0 replies; 7+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-09-20  6:58 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from pinskia at gcc dot gnu dot org  2006-09-20 06:58 -------
Confirmed.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pinskia at gcc dot gnu dot
                   |                            |org
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
           Keywords|                            |rejects-valid
   Last reconfirmed|0000-00-00 00:00:00         |2006-09-20 06:58:28
               date|                            |


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


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

end of thread, other threads:[~2013-11-16  9:55 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-29143-4@http.gcc.gnu.org/bugzilla/>
2013-05-05  0:59 ` [Bug c++/29143] address-of overloaded function does not work in function call paolo.carlini at oracle dot com
2013-08-21  9:55 ` paolo.carlini at oracle dot com
2013-11-16  9:54 ` paolo at gcc dot gnu.org
2013-11-16  9:54 ` paolo at gcc dot gnu.org
2013-11-16  9:55 ` paolo.carlini at oracle dot com
2006-09-19 15:00 [Bug c++/29143] New: " andrew dot stubbs at st dot com
2006-09-20  6:58 ` [Bug c++/29143] " pinskia at gcc dot gnu dot org
2008-08-10 23:16 ` pinskia at gcc dot gnu dot 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).