diff options
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -5972,6 +5972,16 @@ build_vector_type (tree innertype, int nunits) return make_vector_type (innertype, nunits, VOIDmode); } +/* Build RESX_EXPR with given REGION_NUMBER. */ +tree +build_resx (int region_number) +{ + tree t; + t = build1 (RESX_EXPR, void_type_node, + build_int_cst (NULL_TREE, region_number)); + return t; +} + /* Given an initializer INIT, return TRUE if INIT is zero or some aggregate of zeros. Otherwise return FALSE. */ bool |