aboutsummaryrefslogtreecommitdiff
path: root/gcc/hooks.c
diff options
context:
space:
mode:
authorUros Bizjak <ubizjak@gmail.com>2016-09-23 12:05:29 +0200
committerJakub Jelinek <jakub@gcc.gnu.org>2016-09-23 12:05:29 +0200
commitbf0728547a84e1247b5f16c4fff2280e7fc5d561 (patch)
tree86d503259ceba41d0384a8005bf36086ca4217d0 /gcc/hooks.c
parentbce2b8f9587a0f55ccee6b69bffb90cd397aac6d (diff)
downloadgcc-bf0728547a84e1247b5f16c4fff2280e7fc5d561.zip
gcc-bf0728547a84e1247b5f16c4fff2280e7fc5d561.tar.gz
gcc-bf0728547a84e1247b5f16c4fff2280e7fc5d561.tar.bz2
hooks.h (hook_uint_uintp_false): Rename to...
* hooks.h (hook_uint_uintp_false): Rename to... (hook_bool_uint_uintp_false): ... this. * hooks.c (hook_uint_uintp_false): Rename to... (hook_bool_uint_uintp_false): ... this. * target.def (elf_flags_numeric): Use hook_bool_uint_uintp_false instead of hook_uint_uintp_false. Co-Authored-By: Jakub Jelinek <jakub@redhat.com> From-SVN: r240417
Diffstat (limited to 'gcc/hooks.c')
-rw-r--r--gcc/hooks.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/hooks.c b/gcc/hooks.c
index 1e92564..0d18ef6 100644
--- a/gcc/hooks.c
+++ b/gcc/hooks.c
@@ -486,8 +486,7 @@ hook_void_gcc_optionsp (struct gcc_options *opts ATTRIBUTE_UNUSED)
returns false. */
bool
-hook_uint_uintp_false (unsigned int, unsigned int *)
+hook_bool_uint_uintp_false (unsigned int, unsigned int *)
{
return false;
}
-