public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libstdc++/11409] New: 26_numerics/fabs_inline.cc failure
@ 2003-07-02 16:06 rth at gcc dot gnu dot org
  2003-07-02 16:07 ` [Bug libstdc++/11409] " rth at gcc dot gnu dot org
                   ` (13 more replies)
  0 siblings, 14 replies; 15+ messages in thread
From: rth at gcc dot gnu dot org @ 2003-07-02 16:06 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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

           Summary: 26_numerics/fabs_inline.cc failure
           Product: gcc
           Version: 3.4
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: libstdc++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: rth at gcc dot gnu dot org
                CC: gcc-bugs at gcc dot gnu dot org
 GCC build triplet: alpha-linux
  GCC host triplet: alpha-linux
GCC target triplet: alpha-linux

The test case fails with 

.../26_numerics/fabs_inline.cc: In function `int main()':
.../26_numerics/fabs_inline.cc:33: error: converting
   overloaded function `fabs' to type `double (*)(double)' is ambiguous
/usr/include/bits/mathinline.h:84: error: candidates are: double fabs(double)
<internal>:0: error:                 double std::fabs(double)

I believe it's not a c++ front end problem because the same .i file 
produces the same error when compiled with an i686-linux compiler.

That said, I can't figure out why this error occurs at all.  The test
case passes on i686-linux; both systems use glibc, and both systems
provide a version of fabs in /usr/include/bits/mathinline.h.

Can someone with more C++ Fu help me out?


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

* [Bug libstdc++/11409] 26_numerics/fabs_inline.cc failure
  2003-07-02 16:06 [Bug libstdc++/11409] New: 26_numerics/fabs_inline.cc failure rth at gcc dot gnu dot org
@ 2003-07-02 16:07 ` rth at gcc dot gnu dot org
  2003-07-02 16:24 ` [Bug c++/11409] [3.3/3.4 regression] using declarations and fabs built-in bangerth at dealii dot org
                   ` (12 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: rth at gcc dot gnu dot org @ 2003-07-02 16:07 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From rth at gcc dot gnu dot org  2003-07-02 16:07 -------
Created an attachment (id=4328)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=4328&action=view)
preprocessed fabs_inline test case


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

* [Bug c++/11409] [3.3/3.4 regression] using declarations and fabs built-in
  2003-07-02 16:06 [Bug libstdc++/11409] New: 26_numerics/fabs_inline.cc failure rth at gcc dot gnu dot org
  2003-07-02 16:07 ` [Bug libstdc++/11409] " rth at gcc dot gnu dot org
@ 2003-07-02 16:24 ` bangerth at dealii dot org
  2003-07-02 17:16 ` bangerth at dealii dot org
                   ` (11 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: bangerth at dealii dot org @ 2003-07-02 16:24 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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


bangerth at dealii dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
          Component|libstdc++                   |c++
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2003-07-02 16:24:22
               date|                            |
            Summary|26_numerics/fabs_inline.cc  |[3.3/3.4 regression] using
                   |failure                     |declarations and fabs built-
                   |                            |in


------- Additional Comments From bangerth at dealii dot org  2003-07-02 16:24 -------
Here's the requested C++-fu:
This is a problem in the C++ front end with built-ins and using
declarations. Here's a smaller testcase:
-----------------------------
namespace std {
  double fabs (double);
}
using std::fabs;

double (*p) (double) = &fabs;
-----------------------------

We can compile this with 3.2.3, but 3.3 and 3.4 fail like so:
g/x> /home/bangerth/bin/gcc-3.3-pre/bin/c++ -c y.cc
y.cc:6: error: converting overloaded function `fabs' to type `double
   (*)(double)' is ambiguous
<internal>:6: error: candidates are: double fabs(double)
y.cc:2: error:                 double std::fabs(double)


I don't think the call is ambiguous, so it should succeed. I believe that it
must have something to do with built-ins because it succeeds if fabs is
renamed to something else.

W.


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

* [Bug c++/11409] [3.3/3.4 regression] using declarations and fabs built-in
  2003-07-02 16:06 [Bug libstdc++/11409] New: 26_numerics/fabs_inline.cc failure rth at gcc dot gnu dot org
  2003-07-02 16:07 ` [Bug libstdc++/11409] " rth at gcc dot gnu dot org
  2003-07-02 16:24 ` [Bug c++/11409] [3.3/3.4 regression] using declarations and fabs built-in bangerth at dealii dot org
@ 2003-07-02 17:16 ` bangerth at dealii dot org
  2003-07-02 17:50 ` rth at redhat dot com
                   ` (10 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: bangerth at dealii dot org @ 2003-07-02 17:16 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From bangerth at dealii dot org  2003-07-02 17:16 -------
By the way, how could this happen that a regression tests started failing? I
thought that's why they are there for!?

W.


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

* [Bug c++/11409] [3.3/3.4 regression] using declarations and fabs built-in
  2003-07-02 16:06 [Bug libstdc++/11409] New: 26_numerics/fabs_inline.cc failure rth at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2003-07-02 17:16 ` bangerth at dealii dot org
@ 2003-07-02 17:50 ` rth at redhat dot com
  2003-07-04 12:01 ` gdr at integrable-solutions dot net
                   ` (9 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: rth at redhat dot com @ 2003-07-02 17:50 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From rth at redhat dot com  2003-07-02 17:50 -------
Subject: Re:  [3.3/3.4 regression] using declarations and fabs built-in

On Wed, Jul 02, 2003 at 05:16:39PM -0000, bangerth at dealii dot org wrote:
> By the way, how could this happen that a regression tests started failing?

To my knowledge it never passed on alpha-linux.


r~


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

* [Bug c++/11409] [3.3/3.4 regression] using declarations and fabs built-in
  2003-07-02 16:06 [Bug libstdc++/11409] New: 26_numerics/fabs_inline.cc failure rth at gcc dot gnu dot org
                   ` (3 preceding siblings ...)
  2003-07-02 17:50 ` rth at redhat dot com
@ 2003-07-04 12:01 ` gdr at integrable-solutions dot net
  2003-07-04 12:02 ` gdr at integrable-solutions dot net
                   ` (8 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: gdr at integrable-solutions dot net @ 2003-07-04 12:01 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From gdr at integrable-solutions dot net  2003-07-04 12:01 -------
Subject: Re:  New: 26_numerics/fabs_inline.cc failure

"rth at gcc dot gnu dot org" <gcc-bugzilla@gcc.gnu.org> writes:

| PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.
| 
| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11409
| 
|            Summary: 26_numerics/fabs_inline.cc failure
|            Product: gcc
|            Version: 3.4
|             Status: UNCONFIRMED
|           Severity: normal
|           Priority: P2
|          Component: libstdc++
|         AssignedTo: unassigned at gcc dot gnu dot org
|         ReportedBy: rth at gcc dot gnu dot org
|                 CC: gcc-bugs at gcc dot gnu dot org
|  GCC build triplet: alpha-linux
|   GCC host triplet: alpha-linux
| GCC target triplet: alpha-linux
| 
| The test case fails with 
| 
| .../26_numerics/fabs_inline.cc: In function `int main()':
| .../26_numerics/fabs_inline.cc:33: error: converting
|    overloaded function `fabs' to type `double (*)(double)' is ambiguous
| /usr/include/bits/mathinline.h:84: error: candidates are: double fabs(double)
| <internal>:0: error:                 double std::fabs(double)

I'm almost certain that this is a bug introduced by the handling of
built-ins.  I'm certain I recently raised this issue, and discussed
the thing with Roger Sayle.

-- Gaby


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

* [Bug c++/11409] [3.3/3.4 regression] using declarations and fabs built-in
  2003-07-02 16:06 [Bug libstdc++/11409] New: 26_numerics/fabs_inline.cc failure rth at gcc dot gnu dot org
                   ` (4 preceding siblings ...)
  2003-07-04 12:01 ` gdr at integrable-solutions dot net
@ 2003-07-04 12:02 ` gdr at integrable-solutions dot net
  2003-07-06  2:08 ` pinskia at physics dot uc dot edu
                   ` (7 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: gdr at integrable-solutions dot net @ 2003-07-04 12:02 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From gdr at integrable-solutions dot net  2003-07-04 12:02 -------
Subject: Re:  [3.3/3.4 regression] using declarations and fabs built-in

"bangerth at dealii dot org" <gcc-bugzilla@gcc.gnu.org> writes:

| Here's the requested C++-fu:
| This is a problem in the C++ front end with built-ins and using
| declarations. Here's a smaller testcase:
| -----------------------------
| namespace std {
|   double fabs (double);
| }
| using std::fabs;
| 
| double (*p) (double) = &fabs;
| -----------------------------
| 
| We can compile this with 3.2.3, but 3.3 and 3.4 fail like so:
| g/x> /home/bangerth/bin/gcc-3.3-pre/bin/c++ -c y.cc
| y.cc:6: error: converting overloaded function `fabs' to type `double
|    (*)(double)' is ambiguous
| <internal>:6: error: candidates are: double fabs(double)
| y.cc:2: error:                 double std::fabs(double)

Yeah, this is a bug in handling the built-ins.  Roger might have
something to say on that.


This is a hot regression.

-- Gaby


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

* [Bug c++/11409] [3.3/3.4 regression] using declarations and fabs built-in
  2003-07-02 16:06 [Bug libstdc++/11409] New: 26_numerics/fabs_inline.cc failure rth at gcc dot gnu dot org
                   ` (5 preceding siblings ...)
  2003-07-04 12:02 ` gdr at integrable-solutions dot net
@ 2003-07-06  2:08 ` pinskia at physics dot uc dot edu
  2003-07-07 13:22 ` pinskia at physics dot uc dot edu
                   ` (6 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: pinskia at physics dot uc dot edu @ 2003-07-06  2:08 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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


pinskia at physics dot uc dot edu changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |snyder at fnal dot gov


------- Additional Comments From pinskia at physics dot uc dot edu  2003-07-06 02:08 -------
*** Bug 9396 has been marked as a duplicate of this bug. ***


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

* [Bug c++/11409] [3.3/3.4 regression] using declarations and fabs built-in
  2003-07-02 16:06 [Bug libstdc++/11409] New: 26_numerics/fabs_inline.cc failure rth at gcc dot gnu dot org
                   ` (6 preceding siblings ...)
  2003-07-06  2:08 ` pinskia at physics dot uc dot edu
@ 2003-07-07 13:22 ` pinskia at physics dot uc dot edu
  2003-07-09 12:35 ` pinskia at physics dot uc dot edu
                   ` (5 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: pinskia at physics dot uc dot edu @ 2003-07-07 13:22 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From pinskia at physics dot uc dot edu  2003-07-07 13:22 -------
According to Phil's regression hunter:
Search converges between 2003-03-11-trunk (#150) and 2003-03-12-trunk (#151)
Search converges between 2003-03-10-3.3 (#76) and 2003-03-12-3.3 (#77)


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

* [Bug c++/11409] [3.3/3.4 regression] using declarations and fabs built-in
  2003-07-02 16:06 [Bug libstdc++/11409] New: 26_numerics/fabs_inline.cc failure rth at gcc dot gnu dot org
                   ` (7 preceding siblings ...)
  2003-07-07 13:22 ` pinskia at physics dot uc dot edu
@ 2003-07-09 12:35 ` pinskia at physics dot uc dot edu
  2003-07-29 14:16 ` pinskia at physics dot uc dot edu
                   ` (4 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: pinskia at physics dot uc dot edu @ 2003-07-09 12:35 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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


pinskia at physics dot uc dot edu changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |kenneth dot simpson at ubsw
                   |                            |dot com


------- Additional Comments From pinskia at physics dot uc dot edu  2003-07-09 12:35 -------
*** Bug 10943 has been marked as a duplicate of this bug. ***


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

* [Bug c++/11409] [3.3/3.4 regression] using declarations and fabs built-in
  2003-07-02 16:06 [Bug libstdc++/11409] New: 26_numerics/fabs_inline.cc failure rth at gcc dot gnu dot org
                   ` (8 preceding siblings ...)
  2003-07-09 12:35 ` pinskia at physics dot uc dot edu
@ 2003-07-29 14:16 ` pinskia at physics dot uc dot edu
  2003-09-06 16:14 ` cvs-commit at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: pinskia at physics dot uc dot edu @ 2003-07-29 14:16 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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


pinskia at physics dot uc dot edu changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |critical
           Priority|P2                          |P1


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

* [Bug c++/11409] [3.3/3.4 regression] using declarations and fabs built-in
  2003-07-02 16:06 [Bug libstdc++/11409] New: 26_numerics/fabs_inline.cc failure rth at gcc dot gnu dot org
                   ` (9 preceding siblings ...)
  2003-07-29 14:16 ` pinskia at physics dot uc dot edu
@ 2003-09-06 16:14 ` cvs-commit at gcc dot gnu dot org
  2003-09-10 17:48 ` [Bug c++/11409] [3.3 " pinskia at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  13 siblings, 0 replies; 15+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2003-09-06 16:14 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From cvs-commit at gcc dot gnu dot org  2003-09-06 16:14 -------
Subject: Bug 11409

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	sayle@gcc.gnu.org	2003-09-06 16:14:31

Modified files:
	gcc/cp         : ChangeLog class.c 
	gcc/testsuite  : ChangeLog 
Added files:
	gcc/testsuite/g++.dg/overload: builtin3.C 

Log message:
	PR c++/11409
	* class.c (resolve_address_of_overloaded_function): When building
	list of matching non-template function decls, ignore anticipated
	declarations of undeclared or shadowed GCC builtins.
	
	* g++.dg/overload/builtin3.C: New test case.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/ChangeLog.diff?cvsroot=gcc&r1=1.3651&r2=1.3652
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/class.c.diff?cvsroot=gcc&r1=1.566&r2=1.567
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&r1=1.3029&r2=1.3030
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/overload/builtin3.C.diff?cvsroot=gcc&r1=NONE&r2=1.1


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

* [Bug c++/11409] [3.3 regression] using declarations and fabs built-in
  2003-07-02 16:06 [Bug libstdc++/11409] New: 26_numerics/fabs_inline.cc failure rth at gcc dot gnu dot org
                   ` (10 preceding siblings ...)
  2003-09-06 16:14 ` cvs-commit at gcc dot gnu dot org
@ 2003-09-10 17:48 ` pinskia at gcc dot gnu dot org
  2003-10-05  3:47 ` cvs-commit at gcc dot gnu dot org
  2003-10-05  4:10 ` pinskia at gcc dot gnu dot org
  13 siblings, 0 replies; 15+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2003-09-10 17:48 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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


pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|3.4                         |3.3.2


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

* [Bug c++/11409] [3.3 regression] using declarations and fabs built-in
  2003-07-02 16:06 [Bug libstdc++/11409] New: 26_numerics/fabs_inline.cc failure rth at gcc dot gnu dot org
                   ` (11 preceding siblings ...)
  2003-09-10 17:48 ` [Bug c++/11409] [3.3 " pinskia at gcc dot gnu dot org
@ 2003-10-05  3:47 ` cvs-commit at gcc dot gnu dot org
  2003-10-05  4:10 ` pinskia at gcc dot gnu dot org
  13 siblings, 0 replies; 15+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2003-10-05  3:47 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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



------- Additional Comments From cvs-commit at gcc dot gnu dot org  2003-10-05 03:47 -------
Subject: Bug 11409

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-3_3-branch
Changes by:	sayle@gcc.gnu.org	2003-10-05 03:46:59

Modified files:
	gcc/cp         : ChangeLog class.c 
	gcc/testsuite  : ChangeLog 
Added files:
	gcc/testsuite/g++.dg/overload: builtin3.C 

Log message:
	PR c++/11409
	* class.c (resolve_address_of_overloaded_function): When building
	list of matching non-template function decls, ignore anticipated
	declarations of undeclared or shadowed GCC builtins.
	
	* g++.dg/overload/builtin3.C: New test case.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.3076.2.211&r2=1.3076.2.212
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/class.c.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.499.2.23&r2=1.499.2.24
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=1.2261.2.296&r2=1.2261.2.297
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/overload/builtin3.C.diff?cvsroot=gcc&only_with_tag=gcc-3_3-branch&r1=NONE&r2=1.1.8.1


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

* [Bug c++/11409] [3.3 regression] using declarations and fabs built-in
  2003-07-02 16:06 [Bug libstdc++/11409] New: 26_numerics/fabs_inline.cc failure rth at gcc dot gnu dot org
                   ` (12 preceding siblings ...)
  2003-10-05  3:47 ` cvs-commit at gcc dot gnu dot org
@ 2003-10-05  4:10 ` pinskia at gcc dot gnu dot org
  13 siblings, 0 replies; 15+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2003-10-05  4:10 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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


pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED


------- Additional Comments From pinskia at gcc dot gnu dot org  2003-10-05 04:10 -------
Fixed for 3.3.2 and 3.4.


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

end of thread, other threads:[~2003-10-05  4:10 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-07-02 16:06 [Bug libstdc++/11409] New: 26_numerics/fabs_inline.cc failure rth at gcc dot gnu dot org
2003-07-02 16:07 ` [Bug libstdc++/11409] " rth at gcc dot gnu dot org
2003-07-02 16:24 ` [Bug c++/11409] [3.3/3.4 regression] using declarations and fabs built-in bangerth at dealii dot org
2003-07-02 17:16 ` bangerth at dealii dot org
2003-07-02 17:50 ` rth at redhat dot com
2003-07-04 12:01 ` gdr at integrable-solutions dot net
2003-07-04 12:02 ` gdr at integrable-solutions dot net
2003-07-06  2:08 ` pinskia at physics dot uc dot edu
2003-07-07 13:22 ` pinskia at physics dot uc dot edu
2003-07-09 12:35 ` pinskia at physics dot uc dot edu
2003-07-29 14:16 ` pinskia at physics dot uc dot edu
2003-09-06 16:14 ` cvs-commit at gcc dot gnu dot org
2003-09-10 17:48 ` [Bug c++/11409] [3.3 " pinskia at gcc dot gnu dot org
2003-10-05  3:47 ` cvs-commit at gcc dot gnu dot org
2003-10-05  4:10 ` 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).