Commit c78f2b91 by Tom Tromey Committed by Tom Tromey

parse.y (patch_assignment): Only transform the rhs of an assignment when compiling to native.

	* parse.y (patch_assignment): Only transform the rhs of an
	assignment when compiling to native.

From-SVN: r62104
parent c4039eb0
2003-01-29 Tom Tromey <tromey@redhat.com>
* parse.y (patch_assignment): Only transform the rhs of an
assignment when compiling to native.
2003-01-28 Tom Tromey <tromey@redhat.com> 2003-01-28 Tom Tromey <tromey@redhat.com>
* jcf-write.c (generate_bytecode_conditional): Typo fixes. * jcf-write.c (generate_bytecode_conditional): Typo fixes.
......
...@@ -12640,7 +12640,7 @@ patch_assignment (tree node, tree wfl_op1) ...@@ -12640,7 +12640,7 @@ patch_assignment (tree node, tree wfl_op1)
} }
/* Copy the rhs if it's a reference. */ /* Copy the rhs if it's a reference. */
if (! flag_check_references && optimize > 0) if (! flag_check_references && ! flag_emit_class_files && optimize > 0)
{ {
switch (TREE_CODE (new_rhs)) switch (TREE_CODE (new_rhs))
{ {
......
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