aboutsummaryrefslogtreecommitdiff
path: root/gcc/hooks.h
diff options
context:
space:
mode:
authorJoern Rennecke <joern.rennecke@embecosm.com>2012-09-30 19:25:49 +0000
committerJoern Rennecke <amylaar@gcc.gnu.org>2012-09-30 20:25:49 +0100
commit4b4de898c94e678bbcfa677bbb524fc3bf33ed51 (patch)
tree7bba91477b083c590808e6d2b1df353f8eabf850 /gcc/hooks.h
parentf84992b0011db09edf7efabf6750ea4ac77df441 (diff)
downloadgcc-4b4de898c94e678bbcfa677bbb524fc3bf33ed51.zip
gcc-4b4de898c94e678bbcfa677bbb524fc3bf33ed51.tar.gz
gcc-4b4de898c94e678bbcfa677bbb524fc3bf33ed51.tar.bz2
re PR rtl-optimization/38449 (delay branch scheduling follows REG_CROSSING_JUMP jumps indiscriminately)
PR rtl-optimization/38449: * hooks.c (hook_bool_const_rtx_const_rtx_true): New function. * hooks.h (hook_bool_const_rtx_const_rtx_true): Declare. * target.def: Merge in definitions and documentation for TARGET_CAN_FOLLOW_JUMP. * doc/tm.texi.in: Add documentation locations for the above. * doc/tm.texi: Regenerate. * reorg.c (follow_jumps): New parameters jump and crossing. Changed all callers. From-SVN: r191878
Diffstat (limited to 'gcc/hooks.h')
-rw-r--r--gcc/hooks.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/hooks.h b/gcc/hooks.h
index 1774816..71b391a 100644
--- a/gcc/hooks.h
+++ b/gcc/hooks.h
@@ -36,6 +36,7 @@ extern bool hook_bool_mode_const_rtx_false (enum machine_mode, const_rtx);
extern bool hook_bool_mode_const_rtx_true (enum machine_mode, const_rtx);
extern bool hook_bool_mode_rtx_false (enum machine_mode, rtx);
extern bool hook_bool_mode_rtx_true (enum machine_mode, rtx);
+extern bool hook_bool_const_rtx_const_rtx_true (const_rtx, const_rtx);
extern bool hook_bool_mode_uhwi_false (enum machine_mode,
unsigned HOST_WIDE_INT);
extern bool hook_bool_tree_false (tree);