Avoid "statement not reached" error.
authorJohn Gilmore <gnu@cygnus>
Tue, 9 Jul 1991 02:36:38 +0000 (02:36 +0000)
committerJohn Gilmore <gnu@cygnus>
Tue, 9 Jul 1991 02:36:38 +0000 (02:36 +0000)
bfd/coffcode.h

index 2dea71a..146d679 100644 (file)
@@ -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;