aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMichael Meissner <meissner@gcc.gnu.org>1993-03-04 15:39:20 +0000
committerMichael Meissner <meissner@gcc.gnu.org>1993-03-04 15:39:20 +0000
commit1763b229fd6fc82dcf00940b01a7472110423ef9 (patch)
treeca3d5f049d5c746379cb3e4ab54d6e7354c6c964 /gcc
parentb29e212cdd1a8e97c82a56b7702083cf8a07011a (diff)
downloadgcc-1763b229fd6fc82dcf00940b01a7472110423ef9.zip
gcc-1763b229fd6fc82dcf00940b01a7472110423ef9.tar.gz
gcc-1763b229fd6fc82dcf00940b01a7472110423ef9.tar.bz2
Add missing \ before return inside string.
From-SVN: r3627
Diffstat (limited to 'gcc')
-rw-r--r--gcc/gcc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/gcc.c b/gcc/gcc.c
index 6189521..3c7e466 100644
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -576,7 +576,7 @@ static int n_default_compilers
#ifdef LINK_LIBGCC_SPECIAL_1
/* Have gcc do the search for libgcc.a, but generate -L options as usual. */
static char *link_command_spec = "\
-%{!fsyntax-only:
+%{!fsyntax-only: \
%{!c:%{!M:%{!MM:%{!E:%{!S:ld %l %X %{o*} %{A} %{d} %{e*} %{m} %{N} %{n} \
%{r} %{s} %{T*} %{t} %{u*} %{x} %{z}\
%{!A:%{!nostdlib:%S}} %{static:}\
@@ -585,7 +585,7 @@ static char *link_command_spec = "\
#ifdef LINK_LIBGCC_SPECIAL
/* Have gcc do the search for libgcc.a, and don't generate -L options. */
static char *link_command_spec = "\
-%{!fsyntax-only:
+%{!fsyntax-only: \
%{!c:%{!M:%{!MM:%{!E:%{!S:ld %l %X %{o*} %{A} %{d} %{e*} %{m} %{N} %{n} \
%{r} %{s} %{T*} %{t} %{u*} %{x} %{z}\
%{!A:%{!nostdlib:%S}} %{static:}\
@@ -593,7 +593,7 @@ static char *link_command_spec = "\
#else
/* Use -L and have the linker do the search for -lgcc. */
static char *link_command_spec = "\
-%{!fsyntax-only:
+%{!fsyntax-only: \
%{!c:%{!M:%{!MM:%{!E:%{!S:ld %l %X %{o*} %{A} %{d} %{e*} %{m} %{N} %{n} \
%{r} %{s} %{T*} %{t} %{u*} %{x} %{z}\
%{!A:%{!nostdlib:%S}} %{static:}\