From: Sven Verdoolaege Date: Sat, 4 Dec 2010 13:47:36 +0000 (+0100) Subject: doc: emphasize the need for isl_int_get_gmp and isl_int_set_gmp X-Git-Tag: isl-0.05~19 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2bfb95f15be85c684807c97373f383026b44999b;p=platform%2Fupstream%2Fisl.git doc: emphasize the need for isl_int_get_gmp and isl_int_set_gmp Signed-off-by: Sven Verdoolaege --- diff --git a/doc/user.pod b/doc/user.pod index 74ffd1a..e0eb54b 100644 --- a/doc/user.pod +++ b/doc/user.pod @@ -195,7 +195,7 @@ are performed in exact integer arithmetic using C. However, to allow future versions of C to optionally support fixed integer arithmetic, all calls to C are wrapped inside C specific macros. -The basic type is C and the following operations +The basic type is C and the operations below are available on this type. The meanings of these operations are essentially the same as their C C counterparts. @@ -203,6 +203,10 @@ As always with C types, Cs need to be initialized with C before they can be used and they need to be released with C after the last use. +The user should not assume that an C is represented +as a C, but should instead explicitly convert between +Cs and Cs using C and +C whenever a C is required. =over