Lines Matching defs:reached
55 /* Is set as long as a statement can be reached. Must be set at level 0. */
56 bool reached = true;
60 * Is reset to true whenever 'reached' changes.
65 * In conjunction with 'reached', controls printing of "fallthrough on ..."
174 reached ? "reachable" : "unreachable",
176 reached = new_reached;
181 * Prints a warning if a statement cannot be reached.
186 if (!reached && warn_about_unreachable) {
187 /* '%s' statement not reached */
347 if (reached) {
411 /* '%s' statement not reached */
494 if (reached && !suppress_fallthrough) {
539 if (reached && !suppress_fallthrough) {
589 cstmt->c_always_then = reached;
596 cstmt->c_reached_end_of_then = reached;
691 * The end of the switch statement is always reached since
693 * reached.
700 * The end of the switch statement is reached if the end of the
701 * last statement inside it is reached.
717 if (!reached) {
749 if (!reached) {
792 if (tn1 != NULL && !reached) {
840 /* simply "statement not reached" would be confusing */
841 if (!reached && warn_about_unreachable) {
842 /* end-of-loop code not reached */
878 else if (reached)