From: Jason Merrill Date: Sun, 15 Sep 2013 19:34:27 +0000 (-0400) Subject: * lambda.c (add_capture): Don't add DECL_LANG_SPECIFIC. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=018795f47711aa9d4a541a7bae0f27efeea66f12;p=gcc.git * lambda.c (add_capture): Don't add DECL_LANG_SPECIFIC. From-SVN: r202603 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 61e681adbca..af243a2a4cf 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +2013-09-15 Jason Merrill + + * lambda.c (add_capture): Don't add DECL_LANG_SPECIFIC. + 2013-09-13 Jason Merrill PR c++/58273 diff --git a/gcc/cp/lambda.c b/gcc/cp/lambda.c index a53e692d48b..bf758348816 100644 --- a/gcc/cp/lambda.c +++ b/gcc/cp/lambda.c @@ -499,7 +499,7 @@ add_capture (tree lambda, tree id, tree initializer, bool by_reference_p, } /* Make member variable. */ - member = build_lang_decl (FIELD_DECL, name, type); + member = build_decl (input_location, FIELD_DECL, name, type); DECL_VLA_CAPTURE_P (member) = vla; if (!explicit_init_p) diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c index d560e3cb161..fed004c9013 100644 --- a/gcc/cp/pt.c +++ b/gcc/cp/pt.c @@ -10500,7 +10500,7 @@ tsubst_decl (tree t, tree args, tsubst_flags_t complain) } } - /* Loop through all of the parameter's we'll build. When T is + /* Loop through all of the parameters we'll build. When T is a function parameter pack, LEN is the number of expanded types in EXPANDED_TYPES; otherwise, LEN is 1. */ r = NULL_TREE;