I found some "break" statements that follow "return" or a call to a
noreturn function. These aren't needed, and the compiler would warn
if they were. So, this patch removes them.
Tested by rebuilding.
case print_it_noop:
/* Nothing should be printed for this bpstat entry. */
return PRINT_UNKNOWN;
- break;
case print_it_done:
/* We still want to print the frame, but we already printed the
relevant messages. */
return PRINT_SRC_AND_LOC;
- break;
case print_it_normal:
{
/* Normal case. Call the breakpoint's print_it method. */
return b->print_it (bs);
}
- break;
default:
internal_error (_("print_bp_stop_message: unrecognized enum value"));
- break;
}
}