diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-10-19 09:17:21 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-10-19 09:17:21 +0000 |
commit | fa4c8f49daa1e21c76626447594a2fea21893563 (patch) | |
tree | e4bf2cbb2be5833d9465c10ac26de914bed0c861 /gcc/ch/lang-specs.h | |
parent | e46800cdafc2b2c3f89926b5c3aad49cd9660bab (diff) | |
download | gcc-fa4c8f49daa1e21c76626447594a2fea21893563.tar.gz |
Warning fixes:
* Makefile.in (lex.o): Depend on dwarfout.h.
* lang-specs.h: Add missing braces in initializer.
* lex.c: Include dwarfout.h, if DWARF_DEBUGGING_INFO is defined.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@23168 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ch/lang-specs.h')
-rw-r--r-- | gcc/ch/lang-specs.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/ch/lang-specs.h b/gcc/ch/lang-specs.h index be02c117e5e..b149af437bb 100644 --- a/gcc/ch/lang-specs.h +++ b/gcc/ch/lang-specs.h @@ -20,10 +20,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* This is the contribution to the `default_compilers' array in gcc.c for CHILL. */ - {".ch", "@chill" }, - {".chi", "@chill" }, + {".ch", {"@chill"}}, + {".chi", {"@chill"}}, {"@chill", - "cpp -lang-chill %{nostdinc*} %{C} %{v} %{A*} %{I*} %{P} %I\ + {"cpp -lang-chill %{nostdinc*} %{C} %{v} %{A*} %{I*} %{P} %I\ %{C:%{!E:%eGNU CHILL does not support -C without using -E}}\ -undef -D__GNUCHILL__=%v1 -D__GNUC_MINOR__=%v2\ %c %{Os:-D__OPTIMIZE_SIZE__} %{O*:-D__OPTIMIZE__} %{traditional} %{ftraditional:-traditional}\ @@ -39,4 +39,4 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ %{S:%W{o*}%{!o*:-o %b.s}}%{!S:-o %{|!pipe:%g.s}} |\n\ %{!S:as %a %Y \ %{c:%W{o*}%{!o*:-o %w%b%O}}%{!c:-o %d%w%u%O}\ - %{!pipe:%g.s} %A\n }}"}, + %{!pipe:%g.s} %A\n }}"}}, |