Lines Matching refs:switch_stmt
1496 /* Begin a switch-statement. Returns a new SWITCH_STMT if
1505 r = build_stmt (input_location, SWITCH_STMT, NULL_TREE, NULL_TREE, NULL_TREE, scope);
1515 finish_switch_cond (tree cond, tree switch_stmt)
1548 finish_cond (&SWITCH_STMT_COND (switch_stmt), cond);
1549 SWITCH_STMT_TYPE (switch_stmt) = orig_type;
1550 add_stmt (switch_stmt);
1551 push_switch (switch_stmt);
1552 SWITCH_STMT_BODY (switch_stmt) = push_stmt_list ();
1556 SWITCH_STMT. The COND to switch on is indicated. */
1559 finish_switch_stmt (tree switch_stmt)
1563 SWITCH_STMT_BODY (switch_stmt) =
1564 pop_stmt_list (SWITCH_STMT_BODY (switch_stmt));
1567 scope = SWITCH_STMT_SCOPE (switch_stmt);
1568 SWITCH_STMT_SCOPE (switch_stmt) = NULL;