summaryrefslogtreecommitdiff
path: root/gcc/cfghooks.h
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2003-06-08 16:50:18 +0200
committerJan Hubicka <hubicka@gcc.gnu.org>2003-06-08 14:50:18 +0000
commit10e9fecc62f6c96c41aeff01db61743ce49a2ff9 (patch)
tree6695ebea74baaaa2226f81de735a9efbc2408442 /gcc/cfghooks.h
parent2cdfea3ae80f8952df6bae07d7ebf6c0fceecc51 (diff)
i386.md (subsi_3_zext, [...]): Fix predicates.
* i386.md (subsi_3_zext, sse2_nandv2di3): Fix predicates. * i386.c (k8_avoid_jump_misspredicts): Fix debug output. * cfg.c (verify_flow_info): Move IL independent checks from cfgrtl here. (dump_bb): New based on old dump_bb in cfgrtl.c (debug_bb, debug_bb_n): Move the functions from cfgrtl.c here. * cfghooks.h (cfgh_verify_flow_info): Return status. * cfglayout.c (cfg_layout_finalize): Verify CFG correctness. * cfgrtl.c (debug_bb, debug_bb_n): Move to cfg.c (dump_bb): Remove generic parts. (rtl_verify_flow_info_1): Break out from rtl_verify_flow_info. (rtl_verify_flow_info): Only check things dependeing on linearized RTL. * i386-cmov1.c: Fix regular expression. * i386-cvt-1.c: Likewise. * i386-local.c: Likewise. * i386-local2.c: Likewise. * i386-mul.c: Likewise. * i386-ssetype-1.c: Likewise. * i386-ssetype-3.c: Likewise. * i386-ssetype-5.c: Likewise. From-SVN: r67630
Diffstat (limited to 'gcc/cfghooks.h')
-rw-r--r--gcc/cfghooks.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/cfghooks.h b/gcc/cfghooks.h
index c214b64cdc0..39acd662b27 100644
--- a/gcc/cfghooks.h
+++ b/gcc/cfghooks.h
@@ -26,7 +26,8 @@ struct cfg_hooks
{
/* Debugging. Do not use macros to hook these so they can be called from
debugger! */
- void (*cfgh_verify_flow_info) PARAMS ((void));
+ int (*cfgh_verify_flow_info) PARAMS ((void));
+ void (*dump_bb) PARAMS ((basic_block, FILE *));
/* Basic CFG manipulation. */