2011-03-21 Richard Guenther <rguenther@suse.de>
PR middle-end/47661
* gimple.c (is_gimple_condexpr): Use tree_could_throw_p.
From-SVN: r171236
+2011-03-21 Richard Guenther <rguenther@suse.de>
+
+ PR middle-end/47661
+ * gimple.c (is_gimple_condexpr): Use tree_could_throw_p.
+
2011-03-21 Richard Guenther <rguenther@suse.de>
PR lto/48210
is_gimple_condexpr (tree t)
{
return (is_gimple_val (t) || (COMPARISON_CLASS_P (t)
- && !tree_could_trap_p (t)
+ && !tree_could_throw_p (t)
&& is_gimple_val (TREE_OPERAND (t, 0))
&& is_gimple_val (TREE_OPERAND (t, 1))));
}