Home | History | Annotate | Download | only in cp

Lines Matching defs:then_

142   tree stmt, cond, then_, else_;
147 then_ = THEN_CLAUSE (stmt);
150 if (then_ && else_)
152 tree ft = first_stmt (then_);
168 if (!then_)
169 then_ = build_empty_stmt (locus);
173 /* consteval if has been verified not to have the then_/else_ blocks
174 entered by gotos/case labels from elsewhere, and as then_ block
176 the then_ block regardless of whether else_ has side-effects or not. */
179 if (block_may_fallthru (then_))
186 stmt = integer_nonzerop (cond) ? then_ : else_;
190 stmt = then_;
191 else if (integer_zerop (cond) && !TREE_SIDE_EFFECTS (then_))
194 stmt = build3 (COND_EXPR, void_type_node, cond, then_, else_);