diff options
Diffstat (limited to 'gcc/tree-gimple.h')
-rw-r--r-- | gcc/tree-gimple.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/tree-gimple.h b/gcc/tree-gimple.h index 2493b6b..b45b44b 100644 --- a/gcc/tree-gimple.h +++ b/gcc/tree-gimple.h @@ -62,6 +62,10 @@ extern bool is_gimple_addressable (tree); /* Returns true iff T is any valid GIMPLE lvalue. */ extern bool is_gimple_lvalue (tree); +/* Returns true iff T is a GIMPLE invariant address. */ +bool is_gimple_invariant_address (const_tree); +/* Returns true iff T is a valid GIMPLE constant. */ +bool is_gimple_constant (const_tree); /* Returns true iff T is a GIMPLE restricted function invariant. */ extern bool is_gimple_min_invariant (const_tree); /* Returns true iff T is a GIMPLE rvalue. */ |