diff options
Diffstat (limited to 'gcc/c-family/c-common.c')
-rw-r--r-- | gcc/c-family/c-common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-family/c-common.c b/gcc/c-family/c-common.c index 3393093cc9e..324c28aa114 100644 --- a/gcc/c-family/c-common.c +++ b/gcc/c-family/c-common.c @@ -4906,13 +4906,13 @@ c_common_nodes_and_builtins (void) (build_decl (UNKNOWN_LOCATION, TYPE_DECL, get_identifier ("__builtin_va_list"), va_list_type_node)); - if (targetm.enum_va_list) + if (targetm.enum_va_list_p) { int l; const char *pname; tree ptype; - for (l = 0; targetm.enum_va_list (l, &pname, &ptype); ++l) + for (l = 0; targetm.enum_va_list_p (l, &pname, &ptype); ++l) { lang_hooks.decls.pushdecl (build_decl (UNKNOWN_LOCATION, |