public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libstdc++/48340] New: Several wchar_t tests FAIL on IRIX 6.5
@ 2011-03-29 17:32 ro at gcc dot gnu.org
  2011-03-29 18:19 ` [Bug libstdc++/48340] " redi at gcc dot gnu.org
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: ro at gcc dot gnu.org @ 2011-03-29 17:32 UTC (permalink / raw)
  To: gcc-bugs

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

           Summary: Several wchar_t tests FAIL on IRIX 6.5
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libstdc++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: ro@gcc.gnu.org
              Host: mips-sgi-irix6.5
            Target: mips-sgi-irix6.5
             Build: mips-sgi-irix6.5


Of the remaining libstdc++ failures on IRIX 6.5, most are related to wchar_t
tests, as can be seen at

http://gcc.gnu.org/ml/gcc-testresults/2011-03/msg02830.html

An example is

FAIL: 21_strings/basic_string/inserters_extractors/wchar_t/1.cc execution test

Assertion failed: EX, file
/vol/gcc/src/hg/gcc-4.6-branch/local/libstdc++-v3/testsuite/21_strings/basic_string/inserters_extractors/wchar_t/1.cc,
line 52

#6  0x1000308c in test01 () at
/vol/gcc/src/hg/trunk/local/libstdc++-v3/testsuite/21_strings/basic_string/inserters_extractors/wchar_t/1.cc:52

Running the testcase under gdb, I find:

(gdb) p str10
$1 = {static npos = 4294967295, _M_dataplus = {<std::allocator<wchar_t>> =
{<__gnu_cxx::new_allocator<wchar_t>> = {<No data fields>}, <No data fields>},
_M_p = 0x1000e2f4
L"\000\000\000s\000\000\000a\000\000\000i\000\000\000l\000\000\000i\000\000\000n\000\000\000g\000\000\000
\000\000\000g\000\000\000r\000\000\000a\000\000\000n\000\000\000d\000\000\000
\000\000\000t\000\000\000r\000\000\000a\000\000\000v\000\000\000e\000\000\000r\000\000\000s\000\000\000e\000\000\000
\000\000\000b\000\000\000a\000\000\000y\000\000\000\n\000\000\000\t\000\000\000\t\000\000\000\t\000\000\000
\000\000\000 \000\000\000 \000\000\000
\000\000\000f\000\000\000r\000\000\000o\000\000\000m\000\000\000
\000\000\000E\000\000\000l\000\000\000k\000\000\000
\000\000\000R\000\000\000a\000\000\000p\000\000\000i\000\000\000d\000\000\000s\000\000\000
"...}}
(gdb) p str02
$2 = {static npos = 4294967295, _M_dataplus = {<std::allocator<wchar_t>> =
{<__gnu_cxx::new_allocator<wchar_t>> = {<No data fields>}, <No data fields>},
_M_p = 0x1000e0f4
L"\000\000\000s\000\000\000a\000\000\000i\000\000\000l\000\000\000i\000\000\000n\000\000\000g"}}

I'll need guidance where to look further for the root cause of this.


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

* [Bug libstdc++/48340] Several wchar_t tests FAIL on IRIX 6.5
  2011-03-29 17:32 [Bug libstdc++/48340] New: Several wchar_t tests FAIL on IRIX 6.5 ro at gcc dot gnu.org
@ 2011-03-29 18:19 ` redi at gcc dot gnu.org
  2011-03-29 18:48 ` redi at gcc dot gnu.org
                   ` (13 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: redi at gcc dot gnu.org @ 2011-03-29 18:19 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> 2011-03-29 17:38:58 UTC ---
(In reply to comment #0)
> 
> (gdb) p str10
> $1 = {static npos = 4294967295, _M_dataplus = {<std::allocator<wchar_t>> =
> {<__gnu_cxx::new_allocator<wchar_t>> = {<No data fields>}, <No data fields>},
> _M_p = 0x1000e2f4
> L"\000\000\000s\000\000\000a\000\000\000i\000\000\000l\000\000\000i\000\000\000n\000\000\000g\000\000\000

extracting str10 doesn't seem to have stopped at the first whitespace
character, implying a problem with the wchar_t equivalent of iswspace


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

* [Bug libstdc++/48340] Several wchar_t tests FAIL on IRIX 6.5
  2011-03-29 17:32 [Bug libstdc++/48340] New: Several wchar_t tests FAIL on IRIX 6.5 ro at gcc dot gnu.org
  2011-03-29 18:19 ` [Bug libstdc++/48340] " redi at gcc dot gnu.org
@ 2011-03-29 18:48 ` redi at gcc dot gnu.org
  2011-03-29 18:48 ` ro at CeBiTec dot Uni-Bielefeld.DE
                   ` (12 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: redi at gcc dot gnu.org @ 2011-03-29 18:48 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from Jonathan Wakely <redi at gcc dot gnu.org> 2011-03-29 17:52:44 UTC ---
Here's a simpler test, which should return 1:

#include <locale>

int main()
{
    return isspace(L' ', std::locale());
}

if that works, how about this, which should also return 1:

#include <locale>
#include <sstream>
#include <string>

int main()
{
    std::wstring s(L" ");
    std::wistringstream ss;
    return isspace(s[0], ss.getloc());
}


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

* [Bug libstdc++/48340] Several wchar_t tests FAIL on IRIX 6.5
  2011-03-29 17:32 [Bug libstdc++/48340] New: Several wchar_t tests FAIL on IRIX 6.5 ro at gcc dot gnu.org
  2011-03-29 18:19 ` [Bug libstdc++/48340] " redi at gcc dot gnu.org
  2011-03-29 18:48 ` redi at gcc dot gnu.org
@ 2011-03-29 18:48 ` ro at CeBiTec dot Uni-Bielefeld.DE
  2011-03-30 11:27 ` redi at gcc dot gnu.org
                   ` (11 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: ro at CeBiTec dot Uni-Bielefeld.DE @ 2011-03-29 18:48 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #3 from ro at CeBiTec dot Uni-Bielefeld.DE <ro at CeBiTec dot Uni-Bielefeld.DE> 2011-03-29 18:09:05 UTC ---
Both return 0.  I wonder if the fact that char is unsigned on IRIX might
have something to do with this?  OTOH, compiling them with -fsigned-char
doesn't change anything.

If I compile the tests with SGI CC instead, they do return 1.

    Rainer


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

* [Bug libstdc++/48340] Several wchar_t tests FAIL on IRIX 6.5
  2011-03-29 17:32 [Bug libstdc++/48340] New: Several wchar_t tests FAIL on IRIX 6.5 ro at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2011-03-29 18:48 ` ro at CeBiTec dot Uni-Bielefeld.DE
@ 2011-03-30 11:27 ` redi at gcc dot gnu.org
  2011-03-30 11:29 ` ro at CeBiTec dot Uni-Bielefeld.DE
                   ` (10 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: redi at gcc dot gnu.org @ 2011-03-30 11:27 UTC (permalink / raw)
  To: gcc-bugs

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

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2011.03.30 11:07:13
     Ever Confirmed|0                           |1

--- Comment #4 from Jonathan Wakely <redi at gcc dot gnu.org> 2011-03-30 11:07:13 UTC ---
Are you using a specific configure value for --enable-clocale or just using the
default "generic" model?

What about this test, I assume the assertion fails:

#include <locale>
#include <assert.h>

int main()
{
    struct ctype : std::ctype<wchar_t>
    {
        bool test()
        {
            return this->is(std::ctype_base::space, L' ');
        }
    } c;

    assert( c.test() == iswctype(L' ', wctype("space")) );
}


What is the value of _ISspace in /usr/include/ctype.h ?
If it's greater than (1<<15) that would explain it


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

* [Bug libstdc++/48340] Several wchar_t tests FAIL on IRIX 6.5
  2011-03-29 17:32 [Bug libstdc++/48340] New: Several wchar_t tests FAIL on IRIX 6.5 ro at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2011-03-30 11:27 ` redi at gcc dot gnu.org
@ 2011-03-30 11:29 ` ro at CeBiTec dot Uni-Bielefeld.DE
  2011-03-30 11:50 ` redi at gcc dot gnu.org
                   ` (9 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: ro at CeBiTec dot Uni-Bielefeld.DE @ 2011-03-30 11:29 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #5 from ro at CeBiTec dot Uni-Bielefeld.DE <ro at CeBiTec dot Uni-Bielefeld.DE> 2011-03-30 11:16:55 UTC ---
> --- Comment #4 from Jonathan Wakely <redi at gcc dot gnu.org> 2011-03-30 11:07:13 UTC ---
> Are you using a specific configure value for --enable-clocale or just using the
> default "generic" model?

I'm using the generic model: last time I tried ieee_1003.1-2001 (both on
Solaris and IRIX), it failed (PR libstdc++/41495) and I haven't yet
gotten around to do anything about this.

> What about this test, I assume the assertion fails:

Indeed.

> What is the value of _ISspace in /usr/include/ctype.h ?

#define _ISspace        (_S | _BL)

#define _S      0x00000008      /* Spacing character */
#define _BL     0x80000000      /* The blank character class */

> If it's greater than (1<<15) that would explain it

There we have it.

    Rainer


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

* [Bug libstdc++/48340] Several wchar_t tests FAIL on IRIX 6.5
  2011-03-29 17:32 [Bug libstdc++/48340] New: Several wchar_t tests FAIL on IRIX 6.5 ro at gcc dot gnu.org
                   ` (4 preceding siblings ...)
  2011-03-30 11:29 ` ro at CeBiTec dot Uni-Bielefeld.DE
@ 2011-03-30 11:50 ` redi at gcc dot gnu.org
  2011-03-30 11:55 ` redi at gcc dot gnu.org
                   ` (8 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: redi at gcc dot gnu.org @ 2011-03-30 11:50 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #6 from Jonathan Wakely <redi at gcc dot gnu.org> 2011-03-30 11:27:09 UTC ---
(In reply to comment #5)
> > --- Comment #4 from Jonathan Wakely <redi at gcc dot gnu.org> 2011-03-30 11:07:13 UTC ---
> > Are you using a specific configure value for --enable-clocale or just using the
> > default "generic" model?
> 
> I'm using the generic model: last time I tried ieee_1003.1-2001 (both on
> Solaris and IRIX), it failed (PR libstdc++/41495) and I haven't yet
> gotten around to do anything about this.

Yep.

> > What about this test, I assume the assertion fails:
> 
> Indeed.
> 
> > What is the value of _ISspace in /usr/include/ctype.h ?
> 
> #define _ISspace        (_S | _BL)
> 
> #define _S      0x00000008      /* Spacing character */
> #define _BL     0x80000000      /* The blank character class */
> 
> > If it's greater than (1<<15) that would explain it
> 
> There we have it.

Badabing.

I'm planning to add isblank to std::locale (LWG 2019) which will need changes
to all the locale models so while I'm doing that I will overhaul the ieee
locale model (possibly adding a POSIX 2008 version as well, which would be
close to the gnu model) and I'll also address this, so we can handle values
over (1<<15).  Currently that '15' maximum is hardcoded in a few places.


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

* [Bug libstdc++/48340] Several wchar_t tests FAIL on IRIX 6.5
  2011-03-29 17:32 [Bug libstdc++/48340] New: Several wchar_t tests FAIL on IRIX 6.5 ro at gcc dot gnu.org
                   ` (5 preceding siblings ...)
  2011-03-30 11:50 ` redi at gcc dot gnu.org
@ 2011-03-30 11:55 ` redi at gcc dot gnu.org
  2011-03-30 15:17 ` ro at CeBiTec dot Uni-Bielefeld.DE
                   ` (7 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: redi at gcc dot gnu.org @ 2011-03-30 11:55 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #7 from Jonathan Wakely <redi at gcc dot gnu.org> 2011-03-30 11:29:27 UTC ---
it will be *at least* two weeks before I have time to start that work


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

* [Bug libstdc++/48340] Several wchar_t tests FAIL on IRIX 6.5
  2011-03-29 17:32 [Bug libstdc++/48340] New: Several wchar_t tests FAIL on IRIX 6.5 ro at gcc dot gnu.org
                   ` (6 preceding siblings ...)
  2011-03-30 11:55 ` redi at gcc dot gnu.org
@ 2011-03-30 15:17 ` ro at CeBiTec dot Uni-Bielefeld.DE
  2011-03-30 15:17 ` ro at CeBiTec dot Uni-Bielefeld.DE
                   ` (6 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: ro at CeBiTec dot Uni-Bielefeld.DE @ 2011-03-30 15:17 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #9 from ro at CeBiTec dot Uni-Bielefeld.DE <ro at CeBiTec dot Uni-Bielefeld.DE> 2011-03-30 15:06:50 UTC ---
> --- Comment #7 from Jonathan Wakely <redi at gcc dot gnu.org> 2011-03-30 11:29:27 UTC ---
> it will be *at least* two weeks before I have time to start that work

Don't worry about that: this bug has existed for a long time and I only
now got around to having a closer look.

So absolutely no need to hurry.

    Rainer


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

* [Bug libstdc++/48340] Several wchar_t tests FAIL on IRIX 6.5
  2011-03-29 17:32 [Bug libstdc++/48340] New: Several wchar_t tests FAIL on IRIX 6.5 ro at gcc dot gnu.org
                   ` (7 preceding siblings ...)
  2011-03-30 15:17 ` ro at CeBiTec dot Uni-Bielefeld.DE
@ 2011-03-30 15:17 ` ro at CeBiTec dot Uni-Bielefeld.DE
  2011-04-03 17:58 ` redi at gcc dot gnu.org
                   ` (5 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: ro at CeBiTec dot Uni-Bielefeld.DE @ 2011-03-30 15:17 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #8 from ro at CeBiTec dot Uni-Bielefeld.DE <ro at CeBiTec dot Uni-Bielefeld.DE> 2011-03-30 15:06:04 UTC ---
> I'm planning to add isblank to std::locale (LWG 2019) which will need changes
> to all the locale models so while I'm doing that I will overhaul the ieee
> locale model (possibly adding a POSIX 2008 version as well, which would be
> close to the gnu model) and I'll also address this, so we can handle values
> over (1<<15).  Currently that '15' maximum is hardcoded in a few places.

That's great news, thanks for doing this.

    Rainer


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

* [Bug libstdc++/48340] Several wchar_t tests FAIL on IRIX 6.5
  2011-03-29 17:32 [Bug libstdc++/48340] New: Several wchar_t tests FAIL on IRIX 6.5 ro at gcc dot gnu.org
                   ` (8 preceding siblings ...)
  2011-03-30 15:17 ` ro at CeBiTec dot Uni-Bielefeld.DE
@ 2011-04-03 17:58 ` redi at gcc dot gnu.org
  2011-04-06  8:55 ` ro at CeBiTec dot Uni-Bielefeld.DE
                   ` (4 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: redi at gcc dot gnu.org @ 2011-04-03 17:58 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #10 from Jonathan Wakely <redi at gcc dot gnu.org> 2011-04-03 17:58:14 UTC ---
Created attachment 23858
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=23858
handle ctype::mask values that don't fit in 16bits

this should fix it, but changes the size of ctype<wchar_t> on Irix, which would
break the ABI


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

* [Bug libstdc++/48340] Several wchar_t tests FAIL on IRIX 6.5
  2011-03-29 17:32 [Bug libstdc++/48340] New: Several wchar_t tests FAIL on IRIX 6.5 ro at gcc dot gnu.org
                   ` (9 preceding siblings ...)
  2011-04-03 17:58 ` redi at gcc dot gnu.org
@ 2011-04-06  8:55 ` ro at CeBiTec dot Uni-Bielefeld.DE
  2012-01-11 16:18 ` ro at gcc dot gnu.org
                   ` (3 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: ro at CeBiTec dot Uni-Bielefeld.DE @ 2011-04-06  8:55 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #11 from ro at CeBiTec dot Uni-Bielefeld.DE <ro at CeBiTec dot Uni-Bielefeld.DE> 2011-04-06 08:55:22 UTC ---
> --- Comment #10 from Jonathan Wakely <redi at gcc dot gnu.org> 2011-04-03 17:58:14 UTC ---
> Created attachment 23858
>   --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=23858
> handle ctype::mask values that don't fit in 16bits
>
> this should fix it, but changes the size of ctype<wchar_t> on Irix, which would
> break the ABI

Unfortunately, it didn't work.  At first, I applied the patch to my
previous build tree and reran make and make check in libstdc++, but the
failures persisted.  To make sure there wasn't any missing dependency, I
removed the libstdc++-v3 directory, reconfigure and rebuilt, but with
the same results.

I happened to build on Tru64 UNIX from the same sources, and see lots of
wchar_t failures there, too.

    Rainer


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

* [Bug libstdc++/48340] Several wchar_t tests FAIL on IRIX 6.5
  2011-03-29 17:32 [Bug libstdc++/48340] New: Several wchar_t tests FAIL on IRIX 6.5 ro at gcc dot gnu.org
                   ` (10 preceding siblings ...)
  2011-04-06  8:55 ` ro at CeBiTec dot Uni-Bielefeld.DE
@ 2012-01-11 16:18 ` ro at gcc dot gnu.org
  2012-01-11 16:28 ` redi at gcc dot gnu.org
                   ` (2 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: ro at gcc dot gnu.org @ 2012-01-11 16:18 UTC (permalink / raw)
  To: gcc-bugs

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

Rainer Orth <ro at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |redi at gcc dot gnu.org

--- Comment #12 from Rainer Orth <ro at gcc dot gnu.org> 2012-01-11 16:17:45 UTC ---
Jonathan, do you see a way of getting this fixed for 4.7?

Thanks.
  Rainer


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

* [Bug libstdc++/48340] Several wchar_t tests FAIL on IRIX 6.5
  2011-03-29 17:32 [Bug libstdc++/48340] New: Several wchar_t tests FAIL on IRIX 6.5 ro at gcc dot gnu.org
                   ` (11 preceding siblings ...)
  2012-01-11 16:18 ` ro at gcc dot gnu.org
@ 2012-01-11 16:28 ` redi at gcc dot gnu.org
  2012-01-11 16:30 ` ro at CeBiTec dot Uni-Bielefeld.DE
  2014-06-13 11:44 ` ro at gcc dot gnu.org
  14 siblings, 0 replies; 16+ messages in thread
From: redi at gcc dot gnu.org @ 2012-01-11 16:28 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #13 from Jonathan Wakely <redi at gcc dot gnu.org> 2012-01-11 16:27:58 UTC ---
I have some ideas for PR 51772 which would also be relevant to this bug, and
wouldn't affect other platforms. 

I'll see what I can do over the next few days


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

* [Bug libstdc++/48340] Several wchar_t tests FAIL on IRIX 6.5
  2011-03-29 17:32 [Bug libstdc++/48340] New: Several wchar_t tests FAIL on IRIX 6.5 ro at gcc dot gnu.org
                   ` (12 preceding siblings ...)
  2012-01-11 16:28 ` redi at gcc dot gnu.org
@ 2012-01-11 16:30 ` ro at CeBiTec dot Uni-Bielefeld.DE
  2014-06-13 11:44 ` ro at gcc dot gnu.org
  14 siblings, 0 replies; 16+ messages in thread
From: ro at CeBiTec dot Uni-Bielefeld.DE @ 2012-01-11 16:30 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #14 from ro at CeBiTec dot Uni-Bielefeld.DE <ro at CeBiTec dot Uni-Bielefeld.DE> 2012-01-11 16:30:03 UTC ---
Great, thanks.

    Rainer


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

* [Bug libstdc++/48340] Several wchar_t tests FAIL on IRIX 6.5
  2011-03-29 17:32 [Bug libstdc++/48340] New: Several wchar_t tests FAIL on IRIX 6.5 ro at gcc dot gnu.org
                   ` (13 preceding siblings ...)
  2012-01-11 16:30 ` ro at CeBiTec dot Uni-Bielefeld.DE
@ 2014-06-13 11:44 ` ro at gcc dot gnu.org
  14 siblings, 0 replies; 16+ messages in thread
From: ro at gcc dot gnu.org @ 2014-06-13 11:44 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=48340

Rainer Orth <ro at gcc dot gnu.org> changed:

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

--- Comment #15 from Rainer Orth <ro at gcc dot gnu.org> ---
4.7 branch closed.


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

end of thread, other threads:[~2014-06-13 11:44 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-03-29 17:32 [Bug libstdc++/48340] New: Several wchar_t tests FAIL on IRIX 6.5 ro at gcc dot gnu.org
2011-03-29 18:19 ` [Bug libstdc++/48340] " redi at gcc dot gnu.org
2011-03-29 18:48 ` redi at gcc dot gnu.org
2011-03-29 18:48 ` ro at CeBiTec dot Uni-Bielefeld.DE
2011-03-30 11:27 ` redi at gcc dot gnu.org
2011-03-30 11:29 ` ro at CeBiTec dot Uni-Bielefeld.DE
2011-03-30 11:50 ` redi at gcc dot gnu.org
2011-03-30 11:55 ` redi at gcc dot gnu.org
2011-03-30 15:17 ` ro at CeBiTec dot Uni-Bielefeld.DE
2011-03-30 15:17 ` ro at CeBiTec dot Uni-Bielefeld.DE
2011-04-03 17:58 ` redi at gcc dot gnu.org
2011-04-06  8:55 ` ro at CeBiTec dot Uni-Bielefeld.DE
2012-01-11 16:18 ` ro at gcc dot gnu.org
2012-01-11 16:28 ` redi at gcc dot gnu.org
2012-01-11 16:30 ` ro at CeBiTec dot Uni-Bielefeld.DE
2014-06-13 11:44 ` ro 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).