* gimple-expr.h (is_gimple_constant): Reorder.
* tree-ssa-propagate.c (before_dom_children): Use inline accessor.
From-SVN: r223156
+2015-05-13 Eric Botcazou <ebotcazou@adacore.com>
+
+ * gimple-expr.h (is_gimple_constant): Reorder.
+ * tree-ssa-propagate.c (before_dom_children): Use inline accessor.
+
2015-05-13 Segher Boessenkool <segher@kernel.crashing.org>
* combine.c (simplify_set): When generating a CC set, if the
case INTEGER_CST:
case REAL_CST:
case FIXED_CST:
- case STRING_CST:
case COMPLEX_CST:
case VECTOR_CST:
+ case STRING_CST:
return true;
default:
&& gimple_call_noreturn_p (stmt))
stmts_to_fixup.safe_push (stmt);
- if (is_gimple_assign (stmt)
- && (get_gimple_rhs_class (gimple_assign_rhs_code (stmt))
- == GIMPLE_SINGLE_RHS))
+ if (gimple_assign_single_p (stmt))
{
tree rhs = gimple_assign_rhs1 (stmt);