Commit 1d7a9c94 by Tom Wood

(expand_inline_function): Don't output line notes

	for implicit formals.

From-SVN: r2848
parent fb266030
......@@ -1217,10 +1217,15 @@ expand_inline_function (fndecl, parms, target, ignore, type, structure_value_add
/* Where parameter is located in the function. */
rtx copy;
rtx note = emit_note (DECL_SOURCE_FILE (formal),
DECL_SOURCE_LINE (formal));
if (note)
RTX_INTEGRATED_P (note) = 1;
/* Make sure this formal has some correspondence in the users code
* before emitting any line notes for it. */
if (DECL_SOURCE_LINE (formal))
{
rtx note = emit_note (DECL_SOURCE_FILE (formal),
DECL_SOURCE_LINE (formal));
if (note)
RTX_INTEGRATED_P (note) = 1;
}
arg_trees[i] = arg;
loc = RTVEC_ELT (arg_vector, i);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment