From b3ad6f0648d3bc4af0b62d606cfbd763da501c4e Mon Sep 17 00:00:00 2001 From: akr Date: Sat, 22 Jun 2013 15:02:08 +0000 Subject: Update comments. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41573 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- bignum.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bignum.c') diff --git a/bignum.c b/bignum.c index b439302269..89db8ff9d1 100644 --- a/bignum.c +++ b/bignum.c @@ -1165,6 +1165,7 @@ bary_pack(int sign, BDIGIT *ds, size_t num_bdigits, void *words, size_t numwords * [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_bdigits, const void *words, size_t numwo * 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. * -- cgit v1.2.3