Home
last modified time | relevance | path

Searched refs:else_ (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/gcc/gcc/cp/
H A Dcp-gimplify.c162 tree stmt, cond, then_, else_; in gimplify_if_stmt() local
167 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()
/openbsd-src/gnu/gcc/gcc/
H A Dgimplify.c2224 tree else_ = TREE_OPERAND (expr, 2); in shortcut_cond_expr() local
2230 bool else_se = else_ && TREE_SIDE_EFFECTS (else_); in shortcut_cond_expr()
2254 else_ = shortcut_cond_expr (expr); in shortcut_cond_expr()
2255 else_se = else_ && TREE_SIDE_EFFECTS (else_); in shortcut_cond_expr()
2257 expr = build3 (COND_EXPR, void_type_node, pred, NULL_TREE, else_); in shortcut_cond_expr()
2288 if (else_ in shortcut_cond_expr()
2289 && TREE_CODE (else_) == GOTO_EXPR in shortcut_cond_expr()
2290 && TREE_CODE (GOTO_DESTINATION (else_)) == LABEL_DECL) in shortcut_cond_expr()
2292 false_label = GOTO_DESTINATION (else_); in shortcut_cond_expr()
2293 else_ = NULL; in shortcut_cond_expr()
[all …]