+2015-10-28 Tom de Vries <tom@codesourcery.com>
+
+ * tree-ssa-structalias.c (intra_create_variable_infos): Remove
+ superfluous code.
+
2015-10-28 Jason Merrill <jason@redhat.com>
* Makefile.in (TAGS): Include libcpp and libiberty.
continue;
}
- if (restrict_pointer_p)
- make_constraint_from_global_restrict (p, "PARM_RESTRICT", true);
- else
+ for (; p; p = vi_next (p))
{
- for (; p; p = vi_next (p))
- {
- if (p->only_restrict_pointers)
- make_constraint_from_global_restrict (p, "PARM_RESTRICT", true);
- else if (p->may_have_pointers)
- make_constraint_from (p, nonlocal_id);
- if (p->is_full_var)
- break;
- }
+ if (p->only_restrict_pointers)
+ make_constraint_from_global_restrict (p, "PARM_RESTRICT", true);
+ else if (p->may_have_pointers)
+ make_constraint_from (p, nonlocal_id);
+ if (p->is_full_var)
+ break;
}
}