+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>
}
END {
- delete pass_counts;
for (i = 1; i < lineno; i++)
{
ret = parse_line(lines[i], "NEXT_PASS");
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;