diff options
Diffstat (limited to 'gcc/dominance.c')
-rw-r--r-- | gcc/dominance.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/dominance.c b/gcc/dominance.c index f7db0f10d6b..9c2dcf03707 100644 --- a/gcc/dominance.c +++ b/gcc/dominance.c @@ -989,7 +989,7 @@ bb_dom_dfs_out (enum cdi_direction dir, basic_block bb) } /* Verify invariants of dominator structure. */ -void +DEBUG_FUNCTION void verify_dominators (enum cdi_direction dir) { int err = 0; @@ -1466,7 +1466,7 @@ dom_info_available_p (enum cdi_direction dir) return dom_computed[dir_index] != DOM_NONE; } -void +DEBUG_FUNCTION void debug_dominance_info (enum cdi_direction dir) { basic_block bb, bb2; @@ -1507,7 +1507,7 @@ debug_dominance_tree_1 (enum cdi_direction dir, basic_block root, /* Prints to stderr representation of the dominance tree (for direction DIR) rooted in ROOT. */ -void +DEBUG_FUNCTION void debug_dominance_tree (enum cdi_direction dir, basic_block root) { debug_dominance_tree_1 (dir, root, 0, false); |