From: Michael Meissner Date: Tue, 16 Feb 1993 03:21:16 +0000 (+0000) Subject: For .S files, pas -traditional to cpp unless -ansi or -traditional. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a73f14a3f91130cd6e4e5a46dfa5d751a4abafef;p=gcc.git For .S files, pas -traditional to cpp unless -ansi or -traditional. From-SVN: r3474 --- diff --git a/gcc/config/i386/osfrose.h b/gcc/config/i386/osfrose.h index abd7d4057a8..e0600a7a048 100644 --- a/gcc/config/i386/osfrose.h +++ b/gcc/config/i386/osfrose.h @@ -65,6 +65,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #undef CPP_SPEC #define CPP_SPEC "\ +%{.S: %{!ansi:%{!traditional:%{!traditional-cpp:%{!ftraditional: -traditional}}}}} \ %{.S: -D__LANGUAGE_ASSEMBLY %{!ansi:-DLANGUAGE_ASSEMBLY}} \ %{.cc: -D__LANGUAGE_C_PLUS_PLUS} \ %{.cxx: -D__LANGUAGE_C_PLUS_PLUS} \ diff --git a/gcc/config/mips/osfrose.h b/gcc/config/mips/osfrose.h index 0b12efdf6c3..518f2e1227f 100644 --- a/gcc/config/mips/osfrose.h +++ b/gcc/config/mips/osfrose.h @@ -67,6 +67,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #endif #define CPP_SPEC "\ +%{.S: %{!ansi:%{!traditional:%{!traditional-cpp:%{!ftraditional: -traditional}}}}} \ %{.S: -D__LANGUAGE_ASSEMBLY__ -D__LANGUAGE_ASSEMBLY %{!ansi:-DLANGUAGE_ASSEMBLY} \ -ULANGUAGE_C -U__LANGUAGE_C__} \ %{.cc: -D__LANGUAGE_C_PLUS_PLUS__ -D__LANGUAGE_C_PLUS_PLUS} \