Commit 772ebeb5 by Eric Botcazou

* gen-pass-instances.awk: Remove GNUism.

From-SVN: r240904
parent 676b4899
2016-10-09 Eric Botcazou <ebotcazou@adacore.com>
* gen-pass-instances.awk: Remove GNUism.
2016-10-09 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
* ipa-prop.c (ipcp_transform_function): Set fields m_vr and bits to NULL of
(*ipcp_transformations)][node->uid].
* ipa-prop.c (ipcp_transform_function): Set fields m_vr and bits to
NULL of (*ipcp_transformations)][node->uid].
2016-10-09 John David Anglin <danglin@gcc.gnu.org>
......
......@@ -193,7 +193,6 @@ function replace_pass(line, fnname, num, i)
}
END {
delete pass_counts;
for (i = 1; i < lineno; i++)
{
ret = parse_line(lines[i], "NEXT_PASS");
......@@ -203,13 +202,13 @@ END {
pass_name = args[1];
with_arg = args[2];
# Set pass_counts
if (pass_name in pass_counts)
pass_counts[pass_name]++;
# Set pass_final_counts
if (pass_name in pass_final_counts)
pass_final_counts[pass_name]++;
else
pass_counts[pass_name] = 1;
pass_final_counts[pass_name] = 1;
pass_num = pass_counts[pass_name];
pass_num = pass_final_counts[pass_name];
# Print call expression with extra pass_num argument
printf "%s", prefix;
......
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