+2006-09-05 Richard Guenther <rguenther@suse.de>
+
+ PR middle-end/28935
+ * tree-ssa-ccp.c (fold_stmt_r): Make sure to fold the condition
+ of a COND_EXPR.
+
2006-09-04 Eric Botcazou <ebotcazou@libertysurf.fr>
PR rtl-optimization/27616
+2006-09-05 Richard Guenther <rguenther@suse.de>
+
+ PR middle-end/28935
+ * gcc.dg/pr28935.c: New testcase.
+
2006-09-05 Eric Botcazou <ebotcazou@libertysurf.fr>
* gcc.c-torture/execute/20060905-1.c: New test.
--- /dev/null
+/* { dg-do compile } */
+/* { dg-options "-O3 -ftree-vectorize" } */
+
+int col[8];
+int extend_options(int w, int h, int *map, int x, int y, int index)
+{
+ int dx, dy;
+ for (dx = -1; dx <= +1; dx++)
+ {
+ int index = (dy < 0 ? 6-dx : dy > 0 ? 2+dx : 2*(1+dx));
+ if (x+dx >= 0 && x+dx < w && y+dy >= 0 && y+dy < h)
+ col[index] = map[(y+dy)*w+(x+dx)];
+ col[index] = -1;
+ }
+}
t = maybe_fold_tmr (expr);
break;
+ case COND_EXPR:
+ if (COMPARISON_CLASS_P (TREE_OPERAND (expr, 0)))
+ {
+ tree op0 = TREE_OPERAND (expr, 0);
+ tree tem = fold_binary (TREE_CODE (op0), TREE_TYPE (op0),
+ TREE_OPERAND (op0, 0), TREE_OPERAND (op0, 1));
+ if (tem && is_gimple_condexpr (tem))
+ TREE_OPERAND (expr, 0) = tem;
+ t = expr;
+ break;
+ }
+
default:
return NULL_TREE;
}