ruby-changes:29521
From: akr <ko1@a...>
Date: Sun, 23 Jun 2013 00:02:25 +0900 (JST)
Subject: [ruby-changes:29521] akr:r41573 (trunk): Update comments.
akr 2013-06-23 00:02:08 +0900 (Sun, 23 Jun 2013) New Revision: 41573 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=41573 Log: Update comments. Modified files: trunk/bignum.c Index: bignum.c =================================================================== --- bignum.c (revision 41572) +++ bignum.c (revision 41573) @@ -1165,6 +1165,7 @@ bary_pack(int sign, BDIGIT *ds, size_t n https://github.com/ruby/ruby/blob/trunk/bignum.c#L1165 * [INTEGER_PACK_2COMP] Use 2's complement representation. * [INTEGER_PACK_LITTLE_ENDIAN] Same as INTEGER_PACK_LSWORD_FIRST|INTEGER_PACK_LSBYTE_FIRST * [INTEGER_PACK_BIG_ENDIAN] Same as INTEGER_PACK_MSWORD_FIRST|INTEGER_PACK_MSBYTE_FIRST + * [INTEGER_PACK_FORCE_GENERIC_IMPLEMENTATION] Use generic implementation (for test and debug). * * This function fills the buffer specified by _words_ * as abs(val) if INTEGER_PACK_2COMP is not specified in _flags_. @@ -1638,6 +1639,7 @@ bary_unpack(BDIGIT *bdigits, size_t num_ https://github.com/ruby/ruby/blob/trunk/bignum.c#L1639 * even if it is representable as a Fixnum. * [INTEGER_PACK_NEGATIVE] Returns non-positive value. * (Returns non-negative value if not specified.) + * [INTEGER_PACK_FORCE_GENERIC_IMPLEMENTATION] Use generic implementation (for test and debug). * * This function returns the imported integer as Fixnum or Bignum. * -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/