diff options
Diffstat (limited to 'gcc/c')
-rw-r--r-- | gcc/c/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/c/c-objc-common.h | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/c/ChangeLog b/gcc/c/ChangeLog index c5dd848..63fba12 100644 --- a/gcc/c/ChangeLog +++ b/gcc/c/ChangeLog @@ -1,3 +1,9 @@ +2016-10-13 Jakub Jelinek <jakub@redhat.com> + + PR target/77957 + * c-objc-common.h (LANG_HOOKS_GETDECLS): Use hook_tree_void_null + instead of lhd_return_null_tree_v. + 2016-10-07 Bernd Schmidt <bschmidt@redhat.com> PR c++/69733 diff --git a/gcc/c/c-objc-common.h b/gcc/c/c-objc-common.h index 14554ac..c86e40e 100644 --- a/gcc/c/c-objc-common.h +++ b/gcc/c/c-objc-common.h @@ -91,7 +91,7 @@ along with GCC; see the file COPYING3. If not see This means it must also provide its own write_globals. */ #undef LANG_HOOKS_GETDECLS -#define LANG_HOOKS_GETDECLS lhd_return_null_tree_v +#define LANG_HOOKS_GETDECLS hook_tree_void_null /* Hooks for tree gimplification. */ #undef LANG_HOOKS_GIMPLIFY_EXPR |