comparison gcc/tree-cfgcleanup.h @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 84e7813d76e9
children
comparison
equal deleted inserted replaced
131:84e7813d76e9 145:1830386684a0
1 /* Header file for CFG cleanup for trees. 1 /* Header file for CFG cleanup for trees.
2 Copyright (C) 2013-2018 Free Software Foundation, Inc. 2 Copyright (C) 2013-2020 Free Software Foundation, Inc.
3 3
4 This file is part of GCC. 4 This file is part of GCC.
5 5
6 GCC is free software; you can redistribute it and/or modify it under 6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free 7 the terms of the GNU General Public License as published by the Free
20 #ifndef GCC_TREE_CFGCLEANUP_H 20 #ifndef GCC_TREE_CFGCLEANUP_H
21 #define GCC_TREE_CFGCLEANUP_H 21 #define GCC_TREE_CFGCLEANUP_H
22 22
23 /* In tree-cfgcleanup.c */ 23 /* In tree-cfgcleanup.c */
24 extern bitmap cfgcleanup_altered_bbs; 24 extern bitmap cfgcleanup_altered_bbs;
25 extern bool cleanup_tree_cfg (void); 25 extern bool cleanup_tree_cfg (unsigned = 0);
26 extern bool fixup_noreturn_call (gimple *stmt); 26 extern bool fixup_noreturn_call (gimple *stmt);
27 extern bool delete_unreachable_blocks_update_callgraph (cgraph_node *dst_node,
28 bool update_clones);
27 29
28 #endif /* GCC_TREE_CFGCLEANUP_H */ 30 #endif /* GCC_TREE_CFGCLEANUP_H */