diff options
author | Andres Felipe Vargas <avargas@teletulua.com.co> | 2001-01-22 15:41:04 -0500 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2001-01-22 20:41:04 +0000 |
commit | 586964a732aabb2c48a76a73f8994a9adb78d811 (patch) | |
tree | e33fe90ecafdd13935b463730c8f257d4e97254e /gcc/cpp.texi | |
parent | f5f5363f77c3b6cd53cf40d53f67e14ab71a6cdc (diff) | |
download | gcc-586964a732aabb2c48a76a73f8994a9adb78d811.tar.gz |
* cpp.texi: Fix typos.
From-SVN: r39186
Diffstat (limited to 'gcc/cpp.texi')
-rw-r--r-- | gcc/cpp.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cpp.texi b/gcc/cpp.texi index 02b6253c535..253d6ee6cba 100644 --- a/gcc/cpp.texi +++ b/gcc/cpp.texi @@ -1127,7 +1127,7 @@ version 1, which is now obsolete, and @samp{2} for version 2). @findex __GNUC_MINOR__ The macro contains the minor version number of the compiler. This can be used to work around differences between different releases of the -compiler (for example, if GCC 2.6.3 is known to support a feature, you +compiler (for example, if GCC 2.6.x is known to support a feature, you can test for @code{__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 6)}). @item __GNUC_PATCHLEVEL__ @@ -1138,7 +1138,7 @@ of the compiler (for example, if GCC 2.6.2 is known to contain a bug, whereas GCC 2.6.3 contains a fix, and you have code which can workaround the problem depending on whether the bug is fixed or not, you can test for @code{__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ > 6) || -(__GNUC__ == 2 && __GNUC_MINOR__ == 6 && __GNUC_PATCHLEVEL__ > 3)}). +(__GNUC__ == 2 && __GNUC_MINOR__ == 6 && __GNUC_PATCHLEVEL__ >= 3)}). @item __GNUG__ @findex __GNUG__ |