Home
last modified time | relevance | path

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

/trueos/contrib/gcc/cp/
HDcp-gimplify.c162 tree stmt, cond, then_, else_; in gimplify_if_stmt() local
166 then_ = THEN_CLAUSE (stmt); in gimplify_if_stmt()
169 if (!then_) in gimplify_if_stmt()
170 then_ = build_empty_stmt (); in gimplify_if_stmt()
175 stmt = then_; in gimplify_if_stmt()
176 else if (integer_zerop (cond) && !TREE_SIDE_EFFECTS (then_)) in gimplify_if_stmt()
179 stmt = build3 (COND_EXPR, void_type_node, cond, then_, else_); in gimplify_if_stmt()
/trueos/contrib/gcc/
HDgimplify.c2221 tree then_ = TREE_OPERAND (expr, 1); in shortcut_cond_expr() local
2227 bool then_se = then_ && TREE_SIDE_EFFECTS (then_); in shortcut_cond_expr()
2237 then_ = shortcut_cond_expr (expr); in shortcut_cond_expr()
2238 then_se = then_ && TREE_SIDE_EFFECTS (then_); in shortcut_cond_expr()
2240 expr = build3 (COND_EXPR, void_type_node, pred, then_, NULL_TREE); in shortcut_cond_expr()
2277 if (then_ in shortcut_cond_expr()
2278 && TREE_CODE (then_) == GOTO_EXPR in shortcut_cond_expr()
2279 && TREE_CODE (GOTO_DESTINATION (then_)) == LABEL_DECL) in shortcut_cond_expr()
2281 true_label = GOTO_DESTINATION (then_); in shortcut_cond_expr()
2282 then_ = NULL; in shortcut_cond_expr()
[all …]