diff options
Diffstat (limited to 'gcc/c/c-tree.h')
-rw-r--r-- | gcc/c/c-tree.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/c/c-tree.h b/gcc/c/c-tree.h index 8d232a4..42172f8 100644 --- a/gcc/c/c-tree.h +++ b/gcc/c/c-tree.h @@ -113,6 +113,10 @@ along with GCC; see the file COPYING3. If not see subexpression meaning it is not a constant expression. */ #define CONSTRUCTOR_NON_CONST(EXPR) TREE_LANG_FLAG_1 (CONSTRUCTOR_CHECK (EXPR)) +/* For a SAVE_EXPR, nonzero if the operand of the SAVE_EXPR has already + been folded. */ +#define SAVE_EXPR_FOLDED_P(EXP) TREE_LANG_FLAG_1 (SAVE_EXPR_CHECK (EXP)) + /* Record parser information about an expression that is irrelevant for code generation alongside a tree representing its value. */ struct c_expr |