summaryrefslogtreecommitdiff
path: root/gcc/cfghooks.h
diff options
context:
space:
mode:
authorhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2003-06-08 14:50:18 +0000
committerhubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4>2003-06-08 14:50:18 +0000
commit028f8cc7142ff9e1778f852559dfa1bf770a06c3 (patch)
tree6695ebea74baaaa2226f81de735a9efbc2408442 /gcc/cfghooks.h
parent1b87317b79ceb45d31b19ac3544d84b534741256 (diff)
downloadgcc-028f8cc7142ff9e1778f852559dfa1bf770a06c3.tar.gz
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67630 138bc75d-0d04-0410-961f-82ee72b054a4
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. */