public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/15090] New: locale_facets.h is incompatible with -fno-for-scope
@ 2004-04-23 10:45 simon dot marshall at misys dot com
  2004-04-23 11:42 ` [Bug libstdc++/15090] " pcarlini at suse dot de
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: simon dot marshall at misys dot com @ 2004-04-23 10:45 UTC (permalink / raw)
  To: gcc-bugs

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 4070 bytes --]

With foo.cpp:

#include <iostream>
int main () {
 return 0;
}

compiled with:

g++ -fno-for-scope foo.cpp

results in:

In file included from /home/marshals/slash/usr/local/lib/gcc/i686-pc-linux-
gnu/3.4.0/../../../../include/c++/3.4.0/bits/basic_ios.h:44,
                 from /home/marshals/slash/usr/local/lib/gcc/i686-pc-linux-
gnu/3.4.0/../../../../include/c++/3.4.0/ios:51,
                 from /home/marshals/slash/usr/local/lib/gcc/i686-pc-linux-
gnu/3.4.0/../../../../include/c++/3.4.0/ostream:45,
                 from /home/marshals/slash/usr/local/lib/gcc/i686-pc-linux-
gnu/3.4.0/../../../../include/c++/3.4.0/iostream:45,
                 from foo.cpp:1:
/home/marshals/slash/usr/local/lib/gcc/i686-pc-linux-
gnu/3.4.0/../../../../include/c++/3.4.0/bits/locale_facets.h: In member 
function `void std::ctype<char>::_M_widen_init() const':
/home/marshals/slash/usr/local/lib/gcc/i686-pc-linux-
gnu/3.4.0/../../../../include/c++/3.4.0/bits/locale_facets.h:1164: error: 
redeclaration of `size_t __i'
/home/marshals/slash/usr/local/lib/gcc/i686-pc-linux-
gnu/3.4.0/../../../../include/c++/3.4.0/bits/locale_facets.h:1158: error: 
`size_t __i' previously declared here
/home/marshals/slash/usr/local/lib/gcc/i686-pc-linux-
gnu/3.4.0/../../../../include/c++/3.4.0/bits/locale_facets.h: In member 
function `void std::ctype<char>::_M_narrow_init() const':
/home/marshals/slash/usr/local/lib/gcc/i686-pc-linux-
gnu/3.4.0/../../../../include/c++/3.4.0/bits/locale_facets.h:1185: error: 
redeclaration of `size_t __i'
/home/marshals/slash/usr/local/lib/gcc/i686-pc-linux-
gnu/3.4.0/../../../../include/c++/3.4.0/bits/locale_facets.h:1178: error: 
`size_t __i' previously declared here

The reason is that ctype<char>::_M_widen_init() and _M_narrow_init() declare a 
variable (__i) in 2 for scopes.  A simple fix is to use different variable 
names for the loops:

*** /home/marshals/slash/usr/local/include/c++/3.4.0/bits/locale_facets.h-3.4.0 
2004-04-23 09:33:23.000000000 +0100
--- /home/marshals/slash/usr/local/include/c++/3.4.0/bits/locale_facets.h-fix   
2004-04-23 09:54:36.000000000 +0100
***************
*** 1161,1168 ****
  
        _M_widen_ok = 1;
        // Set _M_widen_ok to 2 if memcpy can't be used.
!       for (size_t __i = 0; __i < sizeof(_M_widen); ++__i)
!         if (__tmp[__i] != _M_widen[__i])
            {
              _M_widen_ok = 2;
              break;
--- 1161,1168 ----
  
        _M_widen_ok = 1;
        // Set _M_widen_ok to 2 if memcpy can't be used.
!       for (size_t __j = 0; __j < sizeof(_M_widen); ++__j)
!         if (__tmp[__j] != _M_widen[__j])
            {
              _M_widen_ok = 2;
              break;
***************
*** 1182,1192 ****
        // Check if any default values were created.  Do this by
        // renarrowing with a different default value and comparing.
        bool __consecutive = true;
!       for (size_t __i = 0; __i < sizeof(_M_narrow); ++__i)
!         if (!_M_narrow[__i])
            {
              char __c;
!             do_narrow(__tmp + __i, __tmp + __i + 1, 1, &__c);
              if (__c == 1)
                {
                  __consecutive = false;
--- 1182,1192 ----
        // Check if any default values were created.  Do this by
        // renarrowing with a different default value and comparing.
        bool __consecutive = true;
!       for (size_t __j = 0; __j < sizeof(_M_narrow); ++__j)
!         if (!_M_narrow[__j])
            {
              char __c;
!             do_narrow(__tmp + __j, __tmp + __j + 1, 1, &__c);
              if (__c == 1)
                {
                  __consecutive = false;

-- 
           Summary: locale_facets.h is incompatible with -fno-for-scope
           Product: gcc
           Version: 3.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: simon dot marshall at misys dot com
                CC: gcc-bugs at gcc dot gnu dot org


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


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

* [Bug libstdc++/15090] locale_facets.h is incompatible with -fno-for-scope
  2004-04-23 10:45 [Bug c++/15090] New: locale_facets.h is incompatible with -fno-for-scope simon dot marshall at misys dot com
@ 2004-04-23 11:42 ` pcarlini at suse dot de
  2004-04-23 18:00 ` bangerth at dealii dot org
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: pcarlini at suse dot de @ 2004-04-23 11:42 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pcarlini at suse dot de  2004-04-23 11:30 -------
Humpf! I'm not sure we really want the library to be consistent with all the
switches for old-style non-standard C++! Anyway, this specific issue
seems so trivial to be worthy...

Can you possibly check that there are no other occurrence around? Some may be
also under config/.

In any case, please prepare your patch from the gcc-3.4.0 sources, not from
the install directory: just 'cp -ar libstdc++-v3 libstdc++-v3-orig', modify
libstdc++-v3, then do a recursive 'diff -prN libstdc++-v3-orig libstdc++-v3'.

Thanks!

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING
          Component|c++                         |libstdc++


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


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

* [Bug libstdc++/15090] locale_facets.h is incompatible with -fno-for-scope
  2004-04-23 10:45 [Bug c++/15090] New: locale_facets.h is incompatible with -fno-for-scope simon dot marshall at misys dot com
  2004-04-23 11:42 ` [Bug libstdc++/15090] " pcarlini at suse dot de
@ 2004-04-23 18:00 ` bangerth at dealii dot org
  2004-04-23 18:07 ` simon dot marshall at misys dot com
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: bangerth at dealii dot org @ 2004-04-23 18:00 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From bangerth at dealii dot org  2004-04-23 15:59 -------
While it may be worth fixing this one instance, I believe we should 
not be bothered with this. The for-scoping rules have been in place 
for many many years, and it is really time for applications to 
fix their bugs. In particular, since the bugs this is about are so 
easy to fix: just move the declaration of the loop variable out of 
the for-header. 
 
I for one would not be unhappy if the -fno-for-scope thing would 
simply go away... 
 
W. 

-- 


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


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

* [Bug libstdc++/15090] locale_facets.h is incompatible with -fno-for-scope
  2004-04-23 10:45 [Bug c++/15090] New: locale_facets.h is incompatible with -fno-for-scope simon dot marshall at misys dot com
  2004-04-23 11:42 ` [Bug libstdc++/15090] " pcarlini at suse dot de
  2004-04-23 18:00 ` bangerth at dealii dot org
@ 2004-04-23 18:07 ` simon dot marshall at misys dot com
  2004-04-23 18:12 ` bangerth at dealii dot org
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: simon dot marshall at misys dot com @ 2004-04-23 18:07 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From simon dot marshall at misys dot com  2004-04-23 16:22 -------
I can understand gcc maintainers not fixing these sorts of issues themselves 
even when -fno-for-scope exists, but I hope contribution patches such as mine 
will be applied while it does exist.

I don't like us having to use old for-scoping for our own application, but I 
certainly don't view them as "bugs" in our application - it's just an 
unfortunate consequence of our situation.

-- 


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


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

* [Bug libstdc++/15090] locale_facets.h is incompatible with -fno-for-scope
  2004-04-23 10:45 [Bug c++/15090] New: locale_facets.h is incompatible with -fno-for-scope simon dot marshall at misys dot com
                   ` (2 preceding siblings ...)
  2004-04-23 18:07 ` simon dot marshall at misys dot com
@ 2004-04-23 18:12 ` bangerth at dealii dot org
  2004-04-29 11:37 ` pcarlini at suse dot de
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: bangerth at dealii dot org @ 2004-04-23 18:12 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From bangerth at dealii dot org  2004-04-23 16:46 -------
As I said: in this case I'm all for fixing it. Nevertheless, I maintain 
my position that your code does have bugs, because it is not conforming 
to the C++ standard. For the sake of long-term maintainability and 
portability, you may want to fix it. 
 
W. 

-- 


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


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

* [Bug libstdc++/15090] locale_facets.h is incompatible with -fno-for-scope
  2004-04-23 10:45 [Bug c++/15090] New: locale_facets.h is incompatible with -fno-for-scope simon dot marshall at misys dot com
                   ` (3 preceding siblings ...)
  2004-04-23 18:12 ` bangerth at dealii dot org
@ 2004-04-29 11:37 ` pcarlini at suse dot de
  2004-05-14 10:56 ` [Bug libstdc++/15090] -fno-for-scope vs. libstdc++ bkoz at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: pcarlini at suse dot de @ 2004-04-29 11:37 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pcarlini at suse dot de  2004-04-29 10:39 -------
... probably -fno-for-scope will go away...

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |SUSPENDED


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


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

* [Bug libstdc++/15090] -fno-for-scope vs. libstdc++
  2004-04-23 10:45 [Bug c++/15090] New: locale_facets.h is incompatible with -fno-for-scope simon dot marshall at misys dot com
                   ` (4 preceding siblings ...)
  2004-04-29 11:37 ` pcarlini at suse dot de
@ 2004-05-14 10:56 ` bkoz at gcc dot gnu dot org
  2004-05-14 12:14 ` cvs-commit at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: bkoz at gcc dot gnu dot org @ 2004-05-14 10:56 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From bkoz at gcc dot gnu dot org  2004-05-13 15:56 -------

This is fixed, easily. In the future, please fix this up for the whole shebang.

Ie

make CXXFLAGS="-g -O2 -fno-for-scope" WERROR="-Werror" all

should work.

-benjamin

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |bkoz at gcc dot gnu dot org
                   |dot org                     |
             Status|SUSPENDED                   |ASSIGNED
            Summary|locale_facets.h is          |-fno-for-scope vs. libstdc++
                   |incompatible with -fno-for- |
                   |scope                       |


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


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

* [Bug libstdc++/15090] -fno-for-scope vs. libstdc++
  2004-04-23 10:45 [Bug c++/15090] New: locale_facets.h is incompatible with -fno-for-scope simon dot marshall at misys dot com
                   ` (5 preceding siblings ...)
  2004-05-14 10:56 ` [Bug libstdc++/15090] -fno-for-scope vs. libstdc++ bkoz at gcc dot gnu dot org
@ 2004-05-14 12:14 ` cvs-commit at gcc dot gnu dot org
  2004-05-16 22:19 ` cvs-commit at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2004-05-14 12:14 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2004-05-13 16:29 -------
Subject: Bug 15090

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	bkoz@gcc.gnu.org	2004-05-13 16:29:40

Modified files:
	libstdc++-v3   : ChangeLog 
	libstdc++-v3/config/locale/gnu: ctype_members.cc 
	                                numeric_members.cc 
	libstdc++-v3/include/bits: locale_facets.h 
	libstdc++-v3/include/debug: safe_iterator.tcc safe_sequence.h 
	libstdc++-v3/src: debug.cc locale.cc locale_init.cc 
	                  localename.cc 
	libstdc++-v3/testsuite: testsuite_abi.cc testsuite_hooks.cc 

Log message:
	2004-05-13  Simon Marshall <simon.marshall@misys.com>
	Benjamin Kosnik  <bkoz@redhat.com>
	
	PR libstdc++/15090
	* include/bits/locale_facets.h: Fix for -fno-for-scope.
	* include/debug/safe_sequence.h: Same.
	* include/debug/safe_iterator.tcc: Same.
	* src/debug.cc: Same.
	* src/locale.cc: Same.
	* src/locale_init.cc: Same.
	* src/localename.cc: Same.
	* config/locale/gnu/ctype_members.cc: Same.
	* config/locale/gnu/numeric_members.cc: Same.
	* testsuite/testsuite_abi.cc: Same.
	* testsuite/testsuite_hooks.cc: Same.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/ChangeLog.diff?cvsroot=gcc&r1=1.2472&r2=1.2473
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/config/locale/gnu/ctype_members.cc.diff?cvsroot=gcc&r1=1.17&r2=1.18
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/config/locale/gnu/numeric_members.cc.diff?cvsroot=gcc&r1=1.17&r2=1.18
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/bits/locale_facets.h.diff?cvsroot=gcc&r1=1.93&r2=1.94
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/debug/safe_iterator.tcc.diff?cvsroot=gcc&r1=1.2&r2=1.3
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/debug/safe_sequence.h.diff?cvsroot=gcc&r1=1.2&r2=1.3
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/src/debug.cc.diff?cvsroot=gcc&r1=1.5&r2=1.6
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/src/locale.cc.diff?cvsroot=gcc&r1=1.108&r2=1.109
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/src/locale_init.cc.diff?cvsroot=gcc&r1=1.11&r2=1.12
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/src/localename.cc.diff?cvsroot=gcc&r1=1.53&r2=1.54
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/testsuite_abi.cc.diff?cvsroot=gcc&r1=1.1&r2=1.2
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/testsuite_hooks.cc.diff?cvsroot=gcc&r1=1.21&r2=1.22



-- 


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


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

* [Bug libstdc++/15090] -fno-for-scope vs. libstdc++
  2004-04-23 10:45 [Bug c++/15090] New: locale_facets.h is incompatible with -fno-for-scope simon dot marshall at misys dot com
                   ` (6 preceding siblings ...)
  2004-05-14 12:14 ` cvs-commit at gcc dot gnu dot org
@ 2004-05-16 22:19 ` cvs-commit at gcc dot gnu dot org
  2004-05-18 16:11 ` bkoz at gcc dot gnu dot org
  2004-07-10  0:59 ` [Bug libstdc++/15090] [3.4 Regression] " pinskia at gcc dot gnu dot org
  9 siblings, 0 replies; 11+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2004-05-16 22:19 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2004-05-15 21:18 -------
Subject: Bug 15090

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-3_4-branch
Changes by:	bkoz@gcc.gnu.org	2004-05-15 21:18:00

Modified files:
	libstdc++-v3   : ChangeLog 
	libstdc++-v3/config/locale/gnu: ctype_members.cc 
	                                numeric_members.cc 
	libstdc++-v3/include/bits: locale_facets.h 
	libstdc++-v3/include/debug: safe_iterator.tcc safe_sequence.h 
	libstdc++-v3/src: debug.cc locale.cc locale_init.cc 
	                  localename.cc 
	libstdc++-v3/testsuite: testsuite_abi.cc testsuite_hooks.cc 

Log message:
	2004-05-15  Simon Marshall <simon.marshall@misys.com>
	Benjamin Kosnik  <bkoz@redhat.com>
	
	PR libstdc++/15090
	* include/bits/locale_facets.h: Fix for -fno-for-scope.
	* include/debug/safe_sequence.h: Same.
	* include/debug/safe_iterator.tcc: Same.
	* src/debug.cc: Same.
	* src/locale.cc: Same.
	* src/locale_init.cc: Same.
	* src/localename.cc: Same.
	* config/locale/gnu/ctype_members.cc: Same.
	* config/locale/gnu/numeric_members.cc: Same.
	* testsuite/testsuite_abi.cc: Same.
	* testsuite/testsuite_hooks.cc: Same.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=1.2224.2.102&r2=1.2224.2.103
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/config/locale/gnu/ctype_members.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=1.16.4.1&r2=1.16.4.2
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/config/locale/gnu/numeric_members.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=1.13.2.2&r2=1.13.2.3
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/bits/locale_facets.h.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=1.85.2.4&r2=1.85.2.5
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/debug/safe_iterator.tcc.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=1.2&r2=1.2.8.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/include/debug/safe_sequence.h.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=1.2&r2=1.2.8.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/src/debug.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=1.3.10.1&r2=1.3.10.2
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/src/locale.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=1.103.4.3&r2=1.103.4.4
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/src/locale_init.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=1.6.4.2&r2=1.6.4.3
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/src/localename.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=1.51.4.1&r2=1.51.4.2
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/testsuite_abi.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=1.2.2.1&r2=1.2.2.2
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/testsuite/testsuite_hooks.cc.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=1.19.2.2&r2=1.19.2.3



-- 


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


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

* [Bug libstdc++/15090] -fno-for-scope vs. libstdc++
  2004-04-23 10:45 [Bug c++/15090] New: locale_facets.h is incompatible with -fno-for-scope simon dot marshall at misys dot com
                   ` (7 preceding siblings ...)
  2004-05-16 22:19 ` cvs-commit at gcc dot gnu dot org
@ 2004-05-18 16:11 ` bkoz at gcc dot gnu dot org
  2004-07-10  0:59 ` [Bug libstdc++/15090] [3.4 Regression] " pinskia at gcc dot gnu dot org
  9 siblings, 0 replies; 11+ messages in thread
From: bkoz at gcc dot gnu dot org @ 2004-05-18 16:11 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From bkoz at gcc dot gnu dot org  2004-05-18 01:20 -------

Fixed.

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


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


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

* [Bug libstdc++/15090] [3.4 Regression] -fno-for-scope vs. libstdc++
  2004-04-23 10:45 [Bug c++/15090] New: locale_facets.h is incompatible with -fno-for-scope simon dot marshall at misys dot com
                   ` (8 preceding siblings ...)
  2004-05-18 16:11 ` bkoz at gcc dot gnu dot org
@ 2004-07-10  0:59 ` pinskia at gcc dot gnu dot org
  9 siblings, 0 replies; 11+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-07-10  0:59 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|-fno-for-scope vs. libstdc++|[3.4 Regression] -fno-for-
                   |                            |scope vs. libstdc++
   Target Milestone|---                         |3.4.1


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


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

end of thread, other threads:[~2004-07-10  0:59 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-04-23 10:45 [Bug c++/15090] New: locale_facets.h is incompatible with -fno-for-scope simon dot marshall at misys dot com
2004-04-23 11:42 ` [Bug libstdc++/15090] " pcarlini at suse dot de
2004-04-23 18:00 ` bangerth at dealii dot org
2004-04-23 18:07 ` simon dot marshall at misys dot com
2004-04-23 18:12 ` bangerth at dealii dot org
2004-04-29 11:37 ` pcarlini at suse dot de
2004-05-14 10:56 ` [Bug libstdc++/15090] -fno-for-scope vs. libstdc++ bkoz at gcc dot gnu dot org
2004-05-14 12:14 ` cvs-commit at gcc dot gnu dot org
2004-05-16 22:19 ` cvs-commit at gcc dot gnu dot org
2004-05-18 16:11 ` bkoz at gcc dot gnu dot org
2004-07-10  0:59 ` [Bug libstdc++/15090] [3.4 Regression] " 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).