Commit cef67dce by Neil Booth Committed by Neil Booth

lang-specs.h: Rewrite -MD and -MMD to append an underscore.

	* lang-specs.h: Rewrite -MD and -MMD to append an underscore.
	* lang.c (java_handle_option): -MD and -MMD have an underscore.
	* lang.opt: -MD and -MMD have an underscore.

From-SVN: r67958
parent 06f31100
2003-06-14 Neil Booth <neil@daikokuya.co.uk>
* lang-specs.h: Rewrite -MD and -MMD to append an underscore.
* lang.c (java_handle_option): -MD and -MMD have an underscore.
* lang.opt: -MD and -MMD have an underscore.
2003-06-14 Nathan Sidwell <nathan@codesourcery.com> 2003-06-14 Nathan Sidwell <nathan@codesourcery.com>
* class.c (emit_register_classes): Adjust init_function_start * class.c (emit_register_classes): Adjust init_function_start
......
...@@ -36,6 +36,6 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ ...@@ -36,6 +36,6 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */
%{femit-class-file:%{!fsyntax-only:%e-femit-class-file should used along with -fsyntax-only}}\ %{femit-class-file:%{!fsyntax-only:%e-femit-class-file should used along with -fsyntax-only}}\
%{femit-class-files:%{!fsyntax-only:%e-femit-class-file should used along with -fsyntax-only}}\ %{femit-class-files:%{!fsyntax-only:%e-femit-class-file should used along with -fsyntax-only}}\
%{!E:jc1 %i %(jc1) %(cc1_options) %{+e*} %{I*}\ %{!E:jc1 %i %(jc1) %(cc1_options) %{+e*} %{I*}\
%{MD} %{MMD} %{M} %{MM} %{MA} %{MT*} %{MF*}\ %{MD:-MD_} %{MMD:-MMD_} %{M} %{MM} %{MA} %{MT*} %{MF*}\
%{!fsyntax-only:%(invoke_as)}}", 0}, %{!fsyntax-only:%(invoke_as)}}", 0},
...@@ -301,7 +301,7 @@ java_handle_option (size_t scode, const char *arg, int value) ...@@ -301,7 +301,7 @@ java_handle_option (size_t scode, const char *arg, int value)
dependency_tracking |= DEPEND_ENABLE; dependency_tracking |= DEPEND_ENABLE;
break; break;
case OPT_MD: case OPT_MD_:
jcf_dependency_init (1); jcf_dependency_init (1);
dependency_tracking |= DEPEND_SET_FILE | DEPEND_ENABLE; dependency_tracking |= DEPEND_SET_FILE | DEPEND_ENABLE;
break; break;
...@@ -316,7 +316,7 @@ java_handle_option (size_t scode, const char *arg, int value) ...@@ -316,7 +316,7 @@ java_handle_option (size_t scode, const char *arg, int value)
dependency_tracking |= DEPEND_ENABLE; dependency_tracking |= DEPEND_ENABLE;
break; break;
case OPT_MMD: case OPT_MMD_:
jcf_dependency_init (0); jcf_dependency_init (0);
dependency_tracking |= DEPEND_SET_FILE | DEPEND_ENABLE; dependency_tracking |= DEPEND_SET_FILE | DEPEND_ENABLE;
break; break;
......
...@@ -47,7 +47,7 @@ Java Joined ...@@ -47,7 +47,7 @@ Java Joined
M M
Java Java
MD MD_
Java Java
MF MF
...@@ -56,7 +56,7 @@ Java Separate ...@@ -56,7 +56,7 @@ Java Separate
MM MM
Java Java
MMD MMD_
Java Java
MP MP
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment