aboutsummaryrefslogtreecommitdiff
path: root/gcc/gcc.c
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1996-01-15 20:36:45 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1996-01-15 20:36:45 -0500
commit5fc08cad6036ebd15770945063271d5d35f5f3d5 (patch)
tree93f601b50fb3ba6234df92e645bbb239afafb6aa /gcc/gcc.c
parent5cfac96e553f6b6affdf9bc53e15a231034ebf63 (diff)
downloadgcc-5fc08cad6036ebd15770945063271d5d35f5f3d5.zip
gcc-5fc08cad6036ebd15770945063271d5d35f5f3d5.tar.gz
gcc-5fc08cad6036ebd15770945063271d5d35f5f3d5.tar.bz2
(process_commands): Remove inadvertant fallthrough.
From-SVN: r11004
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r--gcc/gcc.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/gcc.c b/gcc/gcc.c
index cc6acca..53d3dbc 100644
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -1,5 +1,5 @@
/* Compiler driver program that can handle many languages.
- Copyright (C) 1987, 89, 92, 93, 94, 1995 Free Software Foundation, Inc.
+ Copyright (C) 1987, 89, 92, 93, 94, 95, 1996 Free Software Foundation, Inc.
This file is part of GNU CC.
@@ -2704,6 +2704,7 @@ process_command (argc, argv)
n_switches++;
break;
}
+ goto normal_switch;
case 'c':
have_c = 1;
@@ -2712,10 +2713,10 @@ process_command (argc, argv)
case 'o':
have_o = 1;
-
- /* ... fall through ... */
+ goto normal_switch;
default:
+ normal_switch:
n_switches++;
if (SWITCH_TAKES_ARG (c) > (p[1] != 0))