From: Jason Merrill Date: Sat, 14 May 1994 01:56:51 +0000 (+0000) Subject: (copy_lang_decl): No-op function that will never X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=37105bebb4cb144d6733dd17ac981cd472bcaace;p=gcc.git (copy_lang_decl): No-op function that will never actually be called. From-SVN: r7294 --- diff --git a/gcc/c-decl.c b/gcc/c-decl.c index a844d6a1192..8cbc6a2e026 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -6749,3 +6749,12 @@ pop_c_function_context () free (p); } + +/* integrate_decl_tree calls this function, but since we don't use the + DECL_LANG_SPECIFIC field, this is a no-op. */ + +void +copy_lang_decl (node) + tree node; +{ +}