aboutsummaryrefslogtreecommitdiff
path: root/gcc/gcc.c
diff options
context:
space:
mode:
authorDavid S. Miller <davem@redhat.com>2002-04-03 23:21:00 -0800
committerDavid S. Miller <davem@gcc.gnu.org>2002-04-03 23:21:00 -0800
commit4d8611d970fe2d72c384a0122f64c4451039bc1f (patch)
treed086abe3a19a8af7e03134c6652edce0a2d0b69f /gcc/gcc.c
parentb03ad99df1e05c819f9186a1ecf653906175eeeb (diff)
downloadgcc-4d8611d970fe2d72c384a0122f64c4451039bc1f.zip
gcc-4d8611d970fe2d72c384a0122f64c4451039bc1f.tar.gz
gcc-4d8611d970fe2d72c384a0122f64c4451039bc1f.tar.bz2
gcc.c (LINK_GCC_C_SEQUENCE_SPEC): No need for a new one-character spec for this, just use %(link_gcc_c_sequence).
2002-04-03 David S. Miller <davem@redhat.com> * gcc.c (LINK_GCC_C_SEQUENCE_SPEC): No need for a new one-character spec for this, just use %(link_gcc_c_sequence). From-SVN: r51842
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r--gcc/gcc.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/gcc/gcc.c b/gcc/gcc.c
index 9bb1abd..d0d0e3f 100644
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -448,7 +448,6 @@ or with constant text in a single argument.
%C process CPP_SPEC as a spec.
%1 process CC1_SPEC as a spec.
%2 process CC1PLUS_SPEC as a spec.
- %3 process LINK_GCC_C_SEQUENCE_SPEC as a spec.
%| output "-" if the input for the current command is coming from a pipe.
%* substitute the variable part of a matched option. (See below.)
Note that each comma in the substituted string is replaced by
@@ -628,7 +627,7 @@ proper position among the other output files. */
%{!fsyntax-only:%{!c:%{!M:%{!MM:%{!E:%{!S:\
%(linker) %l %X %{o*} %{A} %{d} %{e*} %{m} %{N} %{n} %{r} %{s} %{t}\
%{u*} %{x} %{z} %{Z} %{!A:%{!nostdlib:%{!nostartfiles:%S}}}\
- %{static:} %{L*} %(link_libgcc) %o %{!nostdlib:%{!nodefaultlibs:%3}}\
+ %{static:} %{L*} %(link_libgcc) %o %{!nostdlib:%{!nodefaultlibs:%(link_gcc_c_sequence)}}\
%{!A:%{!nostdlib:%{!nostartfiles:%E}}} %{T*} }}}}}}"
#endif
@@ -4759,12 +4758,6 @@ do_spec_1 (spec, inswitch, soft_matched_part)
return value;
break;
- case '3':
- value = do_spec_1 (link_gcc_c_sequence_spec, 0, NULL);
- if (value != 0)
- return value;
- break;
-
case 'a':
value = do_spec_1 (asm_spec, 0, NULL);
if (value != 0)