mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-25 19:02:40 +08:00
Avoid "statement not reached" error.
This commit is contained in:
@ -1840,7 +1840,9 @@ DEFUN(coff_set_flags,(abfd, magicp, flagsp),
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
default: /* Unknown architecture */
|
default: /* Unknown architecture */
|
||||||
return false;
|
/* return false; -- fall through to "return false" below, to avoid
|
||||||
|
"statement never reached" errors on the one below. */
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
Reference in New Issue
Block a user