summaryrefslogtreecommitdiff
path: root/gcc/hooks.c
diff options
context:
space:
mode:
authorrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>2013-11-05 19:59:32 +0000
committerrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>2013-11-05 19:59:32 +0000
commita04a7bec5afd7a0c4d7f32d84f7fa4832600ce70 (patch)
tree514a08b4112a1fa404ac6c8db734121e060dd235 /gcc/hooks.c
parentaeb682a27a580c32813c316b911b59b851f6f34e (diff)
downloadgcc-a04a7bec5afd7a0c4d7f32d84f7fa4832600ce70.tar.gz
Backport new doloop interface.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/wide-int@204417 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/hooks.c')
-rw-r--r--gcc/hooks.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/hooks.c b/gcc/hooks.c
index 3259658e4f4..50c1250f2cb 100644
--- a/gcc/hooks.c
+++ b/gcc/hooks.c
@@ -331,6 +331,13 @@ hook_bool_rtx_int_int_int_intp_bool_false (rtx a ATTRIBUTE_UNUSED,
return false;
}
+bool
+hook_bool_wint_wint_uint_bool_true (const widest_int &, const widest_int &,
+ unsigned int, bool)
+{
+ return true;
+}
+
/* Generic hook that takes an rtx and returns it. */
rtx
hook_rtx_rtx_identity (rtx x)