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 ...@@ -1217,10 +1217,15 @@ expand_inline_function (fndecl, parms, target, ignore, type, structure_value_add
/* Where parameter is located in the function. */ /* Where parameter is located in the function. */
rtx copy; rtx copy;
rtx note = emit_note (DECL_SOURCE_FILE (formal), /* Make sure this formal has some correspondence in the users code
DECL_SOURCE_LINE (formal)); * before emitting any line notes for it. */
if (note) if (DECL_SOURCE_LINE (formal))
RTX_INTEGRATED_P (note) = 1; {
rtx note = emit_note (DECL_SOURCE_FILE (formal),
DECL_SOURCE_LINE (formal));
if (note)
RTX_INTEGRATED_P (note) = 1;
}
arg_trees[i] = arg; arg_trees[i] = arg;
loc = RTVEC_ELT (arg_vector, i); 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