aboutsummaryrefslogtreecommitdiff
path: root/bfd/coffcode.h
diff options
context:
space:
mode:
authorJohn Gilmore <gnu@cygnus>1991-07-09 02:36:38 +0000
committerJohn Gilmore <gnu@cygnus>1991-07-09 02:36:38 +0000
commit8acc9e0558812f5da4668d7ac02066568ec6f32c (patch)
tree892ca477273ff781d4d885ff4ea7fc330f8f6191 /bfd/coffcode.h
parentb8c50f0918ce5a6612d84aa08a6fc2a8fb4f274a (diff)
downloadgdb-8acc9e0558812f5da4668d7ac02066568ec6f32c.zip
gdb-8acc9e0558812f5da4668d7ac02066568ec6f32c.tar.gz
gdb-8acc9e0558812f5da4668d7ac02066568ec6f32c.tar.bz2
Avoid "statement not reached" error.
Diffstat (limited to 'bfd/coffcode.h')
-rw-r--r--bfd/coffcode.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/bfd/coffcode.h b/bfd/coffcode.h
index 2dea71a..146d679 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;