diff options
author | Richard Stallman <rms@gnu.org> | 1992-09-05 02:03:04 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-09-05 02:03:04 +0000 |
commit | dac45ea36e2d1e5997848ef0e39976a04ea85153 (patch) | |
tree | bac0e9a0c8b4906dbada0185ef4c9e9eacc67344 /gcc | |
parent | fe3e8e402b65bcfd1e8bb31ca3801cede0b19531 (diff) | |
download | gcc-dac45ea36e2d1e5997848ef0e39976a04ea85153.zip gcc-dac45ea36e2d1e5997848ef0e39976a04ea85153.tar.gz gcc-dac45ea36e2d1e5997848ef0e39976a04ea85153.tar.bz2 |
Comment change for meaning of TREE_CONSTANT_OVERFLOW.
From-SVN: r2054
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/tree.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -228,8 +228,7 @@ struct tree_common implicitly and should not lead to an "unused value" warning. */ #define TREE_NO_UNUSED_WARNING(NODE) ((NODE)->common.static_flag) -/* In a NON_LVALUE_EXPR, this means there was overflow in folding. - The folded constant is inside the NON_LVALUE_EXPR. */ +/* In an INTEGER_CST, this means there was overflow in folding. */ #define TREE_CONSTANT_OVERFLOW(NODE) ((NODE)->common.static_flag) /* Nonzero for a TREE_LIST or TREE_VEC node means that the derivation |