From 8acc9e0558812f5da4668d7ac02066568ec6f32c Mon Sep 17 00:00:00 2001 From: John Gilmore Date: Tue, 9 Jul 1991 02:36:38 +0000 Subject: [PATCH] Avoid "statement not reached" error. --- bfd/coffcode.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bfd/coffcode.h b/bfd/coffcode.h index 2dea71a3e74..146d679daba 100644 --- a/bfd/coffcode.h +++ b/bfd/coffcode.h @@ -1840,7 +1840,9 @@ DEFUN(coff_set_flags,(abfd, magicp, flagsp), #endif 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; -- 2.30.2