Lines Matching defs:civ
4781 struct control_iv *civ;
4841 for (civ = loop->control_ivs; civ; civ = civ->next)
4844 tree civ_type = TREE_TYPE (civ->step);
4853 if (!operand_equal_p (step, civ->step, 0))
4857 if (operand_equal_p (base, civ->base, 0))
4863 if (operand_equal_p (expanded_base, civ->base, 0))
4870 Because civ {base + step, step} doesn't overflow during loop
4888 if (operand_equal_p (stepped, civ->base, 0)
4889 || operand_equal_p (expanded_stepped, civ->base, 0))
5078 struct control_iv *civ;
5091 for (civ = loop->control_ivs; civ;)
5093 struct control_iv *next = civ->next;
5094 ggc_free (civ);
5095 civ = next;