diff options
author | merrill <merrill@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-06-16 00:47:03 +0000 |
---|---|---|
committer | merrill <merrill@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-06-16 00:47:03 +0000 |
commit | 9f323619d5ce452ba9c786c8f0845db439114829 (patch) | |
tree | 5c0c7f3c74789ffdb30bf034af2b14c44b20aed8 /gcc/tree.h | |
parent | 0eff0336d1855cbd102ab7b39cf50585b158733d (diff) | |
download | gcc-9f323619d5ce452ba9c786c8f0845db439114829.tar.gz |
(TREE_NO_UNUSED_WARNING): Note that this can be applied
to COMPOUND_EXPRs, too.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@7499 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree.h b/gcc/tree.h index b938340a27a..58d0a6c83e0 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -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 |