Commit 41e04369 authored by neil's avatar neil
Browse files

* 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.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67958 138bc75d-0d04-0410-961f-82ee72b054a4
parent 194b1cc5
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>
 
* class.c (emit_register_classes): Adjust init_function_start
......
......@@ -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-files:%{!fsyntax-only:%e-femit-class-file should used along with -fsyntax-only}}\
%{!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},
......@@ -301,7 +301,7 @@ java_handle_option (size_t scode, const char *arg, int value)
dependency_tracking |= DEPEND_ENABLE;
break;
case OPT_MD:
case OPT_MD_:
jcf_dependency_init (1);
dependency_tracking |= DEPEND_SET_FILE | DEPEND_ENABLE;
break;
......@@ -316,7 +316,7 @@ java_handle_option (size_t scode, const char *arg, int value)
dependency_tracking |= DEPEND_ENABLE;
break;
case OPT_MMD:
case OPT_MMD_:
jcf_dependency_init (0);
dependency_tracking |= DEPEND_SET_FILE | DEPEND_ENABLE;
break;
......
......@@ -47,7 +47,7 @@ Java Joined
M
Java
MD
MD_
Java
MF
......@@ -56,7 +56,7 @@ Java Separate
MM
Java
MMD
MMD_
Java
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