[Bug c++/33979] support for char16_t, char32_t
--- Comment #16 from loufoque at gmail dot com 2009-05-26 20:10 --- It seems the current patch makes char16_t and char32_t keywords. According to the linked specifications, however, those should only be typedefs to the actual keywords, which are _Char16_t and _Char32_t. Those typedefs should be in the file . Note this is the same design as bool/_Bool/ in C99. -- loufoque at gmail dot com changed: What|Removed |Added CC||loufoque at gmail dot com http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33979
[Bug c++/33979] support for char16_t, char32_t
--- Comment #17 from loufoque at gmail dot com 2009-05-26 20:16 --- Ignore my previous comment; it seems that was changed since in the current C++0x draft those are indeed keywords. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33979
[Bug rtl-optimization/50396] SSE division by zero generates incorrect code with optimizations enabled
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50396 Mathias Gaunard changed: What|Removed |Added CC||loufoque at gmail dot com --- Comment #4 from Mathias Gaunard 2011-12-22 15:01:02 UTC --- What's missing to get this fixed? Previous comment suggests the fix is trivial.
[Bug libstdc++/45156] New: codecvt doesn't update how much input it has consumed correctly
With an UTF-8 locale, when using codecvt with the following input {0xc3, 0xa9, 0x20, 0xf0, 0xaa, 0x98} the function claims to have consumed all six bytes, albeit it has only returned relevant data for three bytes, the result being {0xe9, 0x20}. -- Summary: codecvt doesn't update how much input it has consumed correctly Product: gcc Version: 4.4.3 Status: UNCONFIRMED Severity: normal Priority: P3 Component: libstdc++ AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: loufoque at gmail dot com http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45156
[Bug libstdc++/45156] codecvt doesn't update how much input it has consumed correctly
--- Comment #1 from loufoque at gmail dot com 2010-08-01 03:03 --- Created an attachment (id=21365) --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=21365&action=view) testcase Requires LANG to be set to an appropriate UTF-8 locale. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45156
[Bug libstdc++/45156] codecvt doesn't update how much input it has consumed correctly
--- Comment #2 from loufoque at gmail dot com 2010-08-01 13:41 --- My bad, this is actually normal, the additional bytes are put in the state and will be returned later. -- loufoque at gmail dot com changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution||INVALID http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45156