From 98a190708b2871e394f5bc705f278dc7712081a8 Mon Sep 17 00:00:00 2001 From: Zack Weinberg Date: Fri, 2 Mar 2001 01:03:47 +0000 Subject: * gcc.c, cp/lang-specs.h, f/lang-specs.h, java/lang-specs.h, objc/lang-specs.h: Add zero initializer for cpp_spec field to all array elements. * cp/lang-specs.h: Don't put an #ifdef inside the initializer list; set a default for CPLUSPLUS_CPP_SPEC and use it. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@40173 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/java/lang-specs.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'gcc/java/lang-specs.h') diff --git a/gcc/java/lang-specs.h b/gcc/java/lang-specs.h index d7cc59b65d5..fa139aa24ec 100644 --- a/gcc/java/lang-specs.h +++ b/gcc/java/lang-specs.h @@ -25,14 +25,14 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ /* This is the contribution to the `default_compilers' array in gcc.c for Java. */ - {".java", "@java" }, - {".class", "@java" }, - {".zip", "@java" }, - {".jar", "@java" }, + {".java", "@java" , 0}, + {".class", "@java" , 0}, + {".zip", "@java" , 0}, + {".jar", "@java" , 0}, {"@java", "%{fjni:%{femit-class-files:%e-fjni and -femit-class-files are incompatible}}\ %{fjni:%{femit-class-file:%e-fjni and -femit-class-file are incompatible}}\ %{!E:jc1 %i %(jc1) %(cc1_options) %{+e*} %{I*}\ %{MD} %{MMD} %{M} %{MM} %{MA} %{MT*} %{MF*}\ - %{!fsyntax-only:%(invoke_as)}}"}, + %{!fsyntax-only:%(invoke_as)}}", 0}, -- cgit v1.2.3