diff options
author | Jason Merrill <merrill@gnu.org> | 1994-06-16 00:47:03 +0000 |
---|---|---|
committer | Jason Merrill <merrill@gnu.org> | 1994-06-16 00:47:03 +0000 |
commit | 248c0f743ba324dfe3c97b6920243a58eb7299f3 (patch) | |
tree | 5c0c7f3c74789ffdb30bf034af2b14c44b20aed8 /gcc | |
parent | b6b12107a9dd00bfd182214f55b923685ab4e9fb (diff) | |
download | gcc-248c0f743ba324dfe3c97b6920243a58eb7299f3.zip gcc-248c0f743ba324dfe3c97b6920243a58eb7299f3.tar.gz gcc-248c0f743ba324dfe3c97b6920243a58eb7299f3.tar.bz2 |
(TREE_NO_UNUSED_WARNING): Note that this can be applied
to COMPOUND_EXPRs, too.
From-SVN: r7499
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/tree.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -256,8 +256,8 @@ struct tree_common In a CONSTRUCTOR, nonzero means allocate static storage. */ #define TREE_STATIC(NODE) ((NODE)->common.static_flag) -/* In a CONVERT_EXPR or NOP_EXPR, this means the node was made - implicitly and should not lead to an "unused value" warning. */ +/* In a CONVERT_EXPR, NOP_EXPR or COMPOUND_EXPR, this means the node was + made implicitly and should not lead to an "unused value" warning. */ #define TREE_NO_UNUSED_WARNING(NODE) ((NODE)->common.static_flag) /* Nonzero for a TREE_LIST or TREE_VEC node means that the derivation |