public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libstdc++/50510] New: transposed variable names in std::seed_seq::generate
@ 2011-09-24 22:35 john.salmon at deshaw dot com
  2011-09-24 22:35 ` [Bug libstdc++/50510] " paolo.carlini at oracle dot com
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: john.salmon at deshaw dot com @ 2011-09-24 22:35 UTC (permalink / raw)
  To: gcc-bugs

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

             Bug #: 50510
           Summary: transposed variable names in std::seed_seq::generate
    Classification: Unclassified
           Product: gcc
           Version: 4.6.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: libstdc++
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: john.salmon@deshaw.com


The C++11 "Final Draft International Standard" (FDIS n3290.pdf) fixes a defect
in the "Final Committee Draft" (FCD n3092.pdf), swapping the use of the
intermediate variables r3 and r4 in the std::seed_seq::generate() function. 
See 25.5.7.1 paragraph 8c.  This patch brings libstdc++ up-to-date:

salmonj@drdlogin0039.en.desres$ diff -u oldrandom.tcc random.tcc
--- oldrandom.tcc    2011-09-19 10:04:46.836512000 -0400
+++ random.tcc    2011-09-24 17:45:02.879621416 -0400
@@ -2796,8 +2796,8 @@
       _Type __r4 = __r3 - __k % __n;
       __r4 = __detail::__mod<_Type,
                __detail::_Shift<_Type, 32>::__value>(__r4);
-      __begin[(__k + __p) % __n] ^= __r4;
-      __begin[(__k + __q) % __n] ^= __r3;
+      __begin[(__k + __p) % __n] ^= __r3;
+      __begin[(__k + __q) % __n] ^= __r4;
       __begin[__k % __n] = __r4;
     }
     }
salmonj@drdlogin0039.en.desres$


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

end of thread, other threads:[~2011-09-24 22:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-09-24 22:35 [Bug libstdc++/50510] New: transposed variable names in std::seed_seq::generate john.salmon at deshaw dot com
2011-09-24 22:35 ` [Bug libstdc++/50510] " paolo.carlini at oracle dot com
2011-09-24 22:36 ` paolo at gcc dot gnu.org
2011-09-24 22:44 ` paolo at gcc dot gnu.org
2011-09-24 22:46 ` paolo.carlini at oracle dot com

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).