diff options
author | Lars Brinkhoff <lars@nocrew.org> | 2001-06-12 19:47:44 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@gcc.gnu.org> | 2001-06-12 19:47:44 +0000 |
commit | 3a08e428d3985c9bf73b49cb294b159bbb61879a (patch) | |
tree | d4ac12c84be8b8fa2eec77592ea1a2d2ab17ad9b /gcc/doc | |
parent | ab130aa59fe2e2b0ac7164146b8cb8ffbd6ef3ad (diff) | |
download | gcc-3a08e428d3985c9bf73b49cb294b159bbb61879a.zip gcc-3a08e428d3985c9bf73b49cb294b159bbb61879a.tar.gz gcc-3a08e428d3985c9bf73b49cb294b159bbb61879a.tar.bz2 |
gcc.texi (HOST_BITS_PER_LONGLONG): Document.
* gcc.texi (HOST_BITS_PER_LONGLONG): Document.
(DIR_SEPARATOR_2): Likewise.
From-SVN: r43272
Diffstat (limited to 'gcc/doc')
-rw-r--r-- | gcc/doc/gcc.texi | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gcc/doc/gcc.texi b/gcc/doc/gcc.texi index 2ffd553..b03611c 100644 --- a/gcc/doc/gcc.texi +++ b/gcc/doc/gcc.texi @@ -3697,6 +3697,11 @@ machine. A C expression for the number of bits in @code{long} on the host machine. +@findex HOST_BITS_PER_LONGLONG +@item HOST_BITS_PER_LONGLONG +A C expression for the number of bits in @code{long long} on the host +machine. + @findex ONLY_INT_FIELDS @item ONLY_INT_FIELDS Define this macro to indicate that the host compiler only supports @@ -3771,6 +3776,14 @@ character constant specifying that character. When GCC displays file names, the character you specify will be used. GCC will test for both slash and the character you specify when parsing filenames. +@findex DIR_SEPARATOR_2 +@item DIR_SEPARATOR_2 +If your system uses an alternative character other than +@samp{DIR_SEPARATOR} to separate directory names within a file +specification, define this macro to be a C character constant specifying +that character. If you define this macro, GCC will test for slash, +@samp{DIR_SEPARATOR}, and @samp{DIR_SEPARATOR_2} when parsing filenames. + @findex TARGET_OBJECT_SUFFIX @item TARGET_OBJECT_SUFFIX Define this macro to be a C string representing the suffix for object |