diff options
author | Jan Hubicka <hubicka@ucw.cz> | 2017-06-08 17:24:38 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2017-06-08 15:24:38 +0000 |
commit | e6026dc04cb8dd7f5f68d6ac586665cc0643d5c0 (patch) | |
tree | d84b73a4c04b4ab6167283c67dbd1cf42152f615 /gcc/tree.h | |
parent | ee4e85b78f5dab1f297aa9278694593c18fe1ae0 (diff) | |
download | gcc-e6026dc04cb8dd7f5f68d6ac586665cc0643d5c0.zip gcc-e6026dc04cb8dd7f5f68d6ac586665cc0643d5c0.tar.gz gcc-e6026dc04cb8dd7f5f68d6ac586665cc0643d5c0.tar.bz2 |
system.h (fancy_abort): Annotate by ATTRIBUTE_COLD.
* system.h (fancy_abort): Annotate by ATTRIBUTE_COLD.
* rtl.h (rtl_check_failed_bounds, rtl_check_failed_type1,
rtl_check_failed_type2, rtl_check_failed_code1,
rtl_check_failed_code2, rtl_check_failed_code_mode,
rtl_check_failed_block_symbol, cwi_check_failed_bounds,
rtvec_check_failed_bounds, rtl_check_failed_flag,
_fatal_insn_not_found, _fatal_insn): Likewise.
* tree.h (tree_contains_struct_check_failed,
tree_check_failed, tree_not_check_failed,
tree_class_check_failed, tree_range_check_failed,
tree_not_class_check_failed, tree_int_cst_elt_check_failed,
tree_vec_elt_check_failed, phi_node_elt_check_failed,
tree_operand_check_failed, omp_clause_check_failed,
omp_clause_operand_check_failed, omp_clause_range_check_failed):
Likewise.
* cp-tree.h (lang_check_failed): Annotate by ATTRIBUTE_COLD.
From-SVN: r249022
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 26 |
1 files changed, 13 insertions, 13 deletions
@@ -358,45 +358,45 @@ as_internal_fn (combined_fn code) extern void tree_contains_struct_check_failed (const_tree, const enum tree_node_structure_enum, const char *, int, const char *) - ATTRIBUTE_NORETURN; + ATTRIBUTE_NORETURN ATTRIBUTE_COLD; extern void tree_check_failed (const_tree, const char *, int, const char *, - ...) ATTRIBUTE_NORETURN; + ...) ATTRIBUTE_NORETURN ATTRIBUTE_COLD; extern void tree_not_check_failed (const_tree, const char *, int, const char *, - ...) ATTRIBUTE_NORETURN; + ...) ATTRIBUTE_NORETURN ATTRIBUTE_COLD; extern void tree_class_check_failed (const_tree, const enum tree_code_class, const char *, int, const char *) - ATTRIBUTE_NORETURN; + ATTRIBUTE_NORETURN ATTRIBUTE_COLD; extern void tree_range_check_failed (const_tree, const char *, int, const char *, enum tree_code, enum tree_code) - ATTRIBUTE_NORETURN; + ATTRIBUTE_NORETURN ATTRIBUTE_COLD; extern void tree_not_class_check_failed (const_tree, const enum tree_code_class, const char *, int, const char *) - ATTRIBUTE_NORETURN; + ATTRIBUTE_NORETURN ATTRIBUTE_COLD; extern void tree_int_cst_elt_check_failed (int, int, const char *, int, const char *) - ATTRIBUTE_NORETURN; + ATTRIBUTE_NORETURN ATTRIBUTE_COLD; extern void tree_vec_elt_check_failed (int, int, const char *, int, const char *) - ATTRIBUTE_NORETURN; + ATTRIBUTE_NORETURN ATTRIBUTE_COLD; extern void phi_node_elt_check_failed (int, int, const char *, int, const char *) - ATTRIBUTE_NORETURN; + ATTRIBUTE_NORETURN ATTRIBUTE_COLD; extern void tree_operand_check_failed (int, const_tree, const char *, int, const char *) - ATTRIBUTE_NORETURN; + ATTRIBUTE_NORETURN ATTRIBUTE_COLD; extern void omp_clause_check_failed (const_tree, const char *, int, const char *, enum omp_clause_code) - ATTRIBUTE_NORETURN; + ATTRIBUTE_NORETURN ATTRIBUTE_COLD; extern void omp_clause_operand_check_failed (int, const_tree, const char *, int, const char *) - ATTRIBUTE_NORETURN; + ATTRIBUTE_NORETURN ATTRIBUTE_COLD; extern void omp_clause_range_check_failed (const_tree, const char *, int, const char *, enum omp_clause_code, enum omp_clause_code) - ATTRIBUTE_NORETURN; + ATTRIBUTE_NORETURN ATTRIBUTE_COLD; #else /* not ENABLE_TREE_CHECKING, or not gcc */ |