Commit 5fc08cad by Richard Kenner

(process_commands): Remove inadvertant fallthrough.

From-SVN: r11004
parent 5cfac96e
/* Compiler driver program that can handle many languages. /* 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. This file is part of GNU CC.
...@@ -2704,6 +2704,7 @@ process_command (argc, argv) ...@@ -2704,6 +2704,7 @@ process_command (argc, argv)
n_switches++; n_switches++;
break; break;
} }
goto normal_switch;
case 'c': case 'c':
have_c = 1; have_c = 1;
...@@ -2712,10 +2713,10 @@ process_command (argc, argv) ...@@ -2712,10 +2713,10 @@ process_command (argc, argv)
case 'o': case 'o':
have_o = 1; have_o = 1;
goto normal_switch;
/* ... fall through ... */
default: default:
normal_switch:
n_switches++; n_switches++;
if (SWITCH_TAKES_ARG (c) > (p[1] != 0)) if (SWITCH_TAKES_ARG (c) > (p[1] != 0))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment