diff options
Diffstat (limited to 'gcc/except.h')
-rw-r--r-- | gcc/except.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gcc/except.h b/gcc/except.h index cf83af944a6..ba75d306976 100644 --- a/gcc/except.h +++ b/gcc/except.h @@ -25,7 +25,7 @@ along with GCC; see the file COPYING3. If not see struct function; /* Describes one exception region. */ -struct eh_region GTY(()) +struct GTY(()) eh_region { /* The immediately surrounding region. */ struct eh_region *outer; @@ -115,7 +115,7 @@ DEF_VEC_ALLOC_P(eh_region, heap); /* Per-function EH data. Used to save exception status for each function. */ -struct eh_status GTY(()) +struct GTY(()) eh_status { /* The tree of all regions for this function. */ struct eh_region *region_tree; @@ -264,8 +264,7 @@ extern tree (*lang_eh_runtime_type) (tree); # define USING_SJLJ_EXCEPTIONS MUST_USE_SJLJ_EXCEPTIONS #endif -struct throw_stmt_node GTY(()) -{ +struct GTY(()) throw_stmt_node { gimple stmt; int region_nr; }; |