diff options
author | Jim Blandy <jimb@zwingli.cygnus.com> | 1999-05-03 12:15:40 +0000 |
---|---|---|
committer | Jim Blandy <jimb@gcc.gnu.org> | 1999-05-03 12:15:40 +0000 |
commit | 01d903f487e78dca5609208e9bf35033fe22e2fe (patch) | |
tree | 606b1503d54053c80f84f088bac586cc23f20a73 /gcc/cp/gxxint.texi | |
parent | 192f4bc12bfe6c68308e0f930886f83906204d34 (diff) | |
download | gcc-01d903f487e78dca5609208e9bf35033fe22e2fe.zip gcc-01d903f487e78dca5609208e9bf35033fe22e2fe.tar.gz gcc-01d903f487e78dca5609208e9bf35033fe22e2fe.tar.bz2 |
* gxxint.texi: Add documentation for 'I'.
From-SVN: r26744
Diffstat (limited to 'gcc/cp/gxxint.texi')
-rw-r--r-- | gcc/cp/gxxint.texi | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/cp/gxxint.texi b/gcc/cp/gxxint.texi index 2f37905..c63b672 100644 --- a/gcc/cp/gxxint.texi +++ b/gcc/cp/gxxint.texi @@ -1747,6 +1747,14 @@ Used to indicate a template function. @item i Encodes the C++ and Java @code{int} types. +@item I +Encodes typedef names of the form @code{int@var{n}_t, where @var{n} is a +positive decimal number. The @samp{I} is followed by either two +hexidecimal digits, which encode the value of @var{n}, or by an +arbitrary number of hexidecimal digits between underscores. For +example, @samp{I40} encodes the type @code{int64_t}, and @samp{I_200_} +encodes the type @code{int512_t}. + @item J Indicates a complex type. |