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/cp | |
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/cp')
-rw-r--r-- | gcc/cp/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cp/cp-tree.h | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 8f37740..14f33c7 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +2017-06-08 Jan Hubicka <hubicka@ucw.cz> + + * cp-tree.h (lang_check_failed): Annotate by ATTRIBUTE_COLD. + 2017-06-07 Nathan Sidwell <nathan@acm.org> * class.c (layout_class_type): Restructure overlong-bitfield tpe diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h index da45d95..550dbf2 100644 --- a/gcc/cp/cp-tree.h +++ b/gcc/cp/cp-tree.h @@ -6819,7 +6819,8 @@ extern void cp_free_lang_data (tree t); extern tree force_target_expr (tree, tree, tsubst_flags_t); extern tree build_target_expr_with_type (tree, tree, tsubst_flags_t); extern void lang_check_failed (const char *, int, - const char *) ATTRIBUTE_NORETURN; + const char *) ATTRIBUTE_NORETURN + ATTRIBUTE_COLD; extern tree stabilize_expr (tree, tree *); extern void stabilize_call (tree, tree *); extern bool stabilize_init (tree, tree *); |