comparison gcc/tree-chrec.h @ 19:58ad6c70ea60

update gcc from 4.4.0 to 4.4.1.
author kent@firefly.cr.ie.u-ryukyu.ac.jp
date Thu, 24 Sep 2009 13:21:57 +0900
parents a06113de4d67
children 77e2b8dfacca
comparison
equal deleted inserted replaced
18:33936f7f2835 19:58ad6c70ea60
130 130
131 if (left == chrec_dont_know 131 if (left == chrec_dont_know
132 || right == chrec_dont_know) 132 || right == chrec_dont_know)
133 return chrec_dont_know; 133 return chrec_dont_know;
134 134
135 if (no_evolution_in_loop_p (left, loop_num, &val) && !val) 135 if (!no_evolution_in_loop_p (left, loop_num, &val)
136 || !val)
136 return chrec_dont_know; 137 return chrec_dont_know;
137 138
138 /* Pointer types should occur only on the left hand side, i.e. in 139 /* Pointer types should occur only on the left hand side, i.e. in
139 the base of the chrec, and not in the step. */ 140 the base of the chrec, and not in the step. */
140 gcc_assert (!POINTER_TYPE_P (TREE_TYPE (right))); 141 gcc_assert (!POINTER_TYPE_P (TREE_TYPE (right)));