Home | History | Annotate | Download | only in gcc

Lines Matching defs:cond_stmt

418 		  gcond *cond_stmt = as_a <gcond *> (stmt);
419 if (gimple_cond_true_p (cond_stmt))
421 else if (gimple_cond_false_p (cond_stmt))
832 gcond *cond_stmt, *new_cond_stmt;
839 cond_stmt = as_a <gcond *> (stmt);
843 /* Create copy of COND_STMT. */
844 new_cond_stmt = gimple_build_cond (gimple_cond_code (cond_stmt),
845 gimple_cond_lhs (cond_stmt),
846 gimple_cond_rhs (cond_stmt),
849 /* Convert COND_STMT to true/false conditional. */
851 gimple_cond_make_false (cond_stmt);
853 gimple_cond_make_true (cond_stmt);
854 update_stmt (cond_stmt);