]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/doc/gccint/sizes-and-offsets-as-runtime-invariants/miscellaneous-polyint-routines.rst
sphinx: add missing trailing newline
[thirdparty/gcc.git] / gcc / doc / gccint / sizes-and-offsets-as-runtime-invariants / miscellaneous-polyint-routines.rst
1 ..
2 Copyright 1988-2022 Free Software Foundation, Inc.
3 This is part of the GCC manual.
4 For copying conditions, see the copyright.rst file.
5
6 Miscellaneous poly_int routines
7 *******************************
8
9 :samp:`print_dec ({value}, {file}, {sign})` :samp:`print_dec ({value}, {file})`
10 Print :samp:`{value}` to :samp:`{file}` as a decimal value, interpreting
11 the coefficients according to :samp:`{sign}`. The final argument is
12 optional if :samp:`{value}` has an inherent sign; for example,
13 ``poly_int64`` values print as signed by default and
14 ``poly_uint64`` values print as unsigned by default.
15
16 This is a simply a ``poly_int`` version of a wide-int routine.