summaryrefslogtreecommitdiff
path: root/gcc/gcc.c
diff options
context:
space:
mode:
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1996-01-16 01:36:45 +0000
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>1996-01-16 01:36:45 +0000
commit4ac725eef6016ec776c862be3951b9270d33a330 (patch)
tree93f601b50fb3ba6234df92e645bbb239afafb6aa /gcc/gcc.c
parentd7f020e84ab9c189e220400753b79c1c31b4faf9 (diff)
downloadgcc-4ac725eef6016ec776c862be3951b9270d33a330.tar.gz
(process_commands): Remove inadvertant fallthrough.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@11004 138bc75d-0d04-0410-961f-82ee72b054a4
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 cc6acca18cd..53d3dbc9862 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))