From: Jakub Jelinek Date: Thu, 28 Jan 2016 14:33:55 +0000 (+0100) Subject: * directives.c (destringize_and_run): Adjust prototype. X-Git-Tag: basepoints/gcc-7~1250 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e2eb5056567bc3814ca236ee8cdb17e044a20392;p=thirdparty%2Fgcc.git * directives.c (destringize_and_run): Adjust prototype. From-SVN: r232928 --- diff --git a/libcpp/ChangeLog b/libcpp/ChangeLog index eff304f09202..3a74d14d6d15 100644 --- a/libcpp/ChangeLog +++ b/libcpp/ChangeLog @@ -1,3 +1,7 @@ +2016-01-28 Jakub Jelinek + + * directives.c (destringize_and_run): Adjust prototype. + 2016-01-27 David Malcolm PR preprocessor/69126 diff --git a/libcpp/directives.c b/libcpp/directives.c index a1e1239bf995..63f54ef72307 100644 --- a/libcpp/directives.c +++ b/libcpp/directives.c @@ -122,7 +122,8 @@ static void do_pragma_error (cpp_reader *); static void do_linemarker (cpp_reader *); static const cpp_token *get_token_no_padding (cpp_reader *); static const cpp_token *get__Pragma_string (cpp_reader *); -static void destringize_and_run (cpp_reader *, const cpp_string *); +static void destringize_and_run (cpp_reader *, const cpp_string *, + source_location); static int parse_answer (cpp_reader *, struct answer **, int, source_location); static cpp_hashnode *parse_assertion (cpp_reader *, struct answer **, int); static struct answer ** find_answer (cpp_hashnode *, const struct answer *);