Searched refs:else_ (Results 1 – 2 of 2) sorted by relevance
162 tree stmt, cond, then_, else_; in gimplify_if_stmt() local167 else_ = ELSE_CLAUSE (stmt); in gimplify_if_stmt()171 if (!else_) in gimplify_if_stmt()172 else_ = build_empty_stmt (); in gimplify_if_stmt()174 if (integer_nonzerop (cond) && !TREE_SIDE_EFFECTS (else_)) in gimplify_if_stmt()177 stmt = else_; in gimplify_if_stmt()179 stmt = build3 (COND_EXPR, void_type_node, cond, then_, else_); in gimplify_if_stmt()
2222 tree else_ = TREE_OPERAND (expr, 2); in shortcut_cond_expr() local2228 bool else_se = else_ && TREE_SIDE_EFFECTS (else_); in shortcut_cond_expr()2252 else_ = shortcut_cond_expr (expr); in shortcut_cond_expr()2253 else_se = else_ && TREE_SIDE_EFFECTS (else_); in shortcut_cond_expr()2286 if (else_ in shortcut_cond_expr()2287 && TREE_CODE (else_) == GOTO_EXPR in shortcut_cond_expr()2288 && TREE_CODE (GOTO_DESTINATION (else_)) == LABEL_DECL) in shortcut_cond_expr()2290 false_label = GOTO_DESTINATION (else_); in shortcut_cond_expr()2291 else_ = NULL; in shortcut_cond_expr()2313 expr = expr_last (else_); in shortcut_cond_expr()[all …]