Commit 032cb602 by Andreas Schwab Committed by Andreas Schwab

re PR debug/9905 (Unhandled STMT_EXPR in loc_descriptor_from_tree)

	PR debug/9905
	* dwarf2out.c (loc_descriptor_from_tree): Handle MODIFY_EXPR by
	recursing through first argument.

From-SVN: r68379
parent bb4f6e6b
2003-06-23 Andreas Schwab <schwab@suse.de>
PR debug/9905
* dwarf2out.c (loc_descriptor_from_tree): Handle MODIFY_EXPR by
recursing through first argument.
2003-06-23 Kazu Hirata <kazu@cs.umass.edu>
* ChangeLog.1: Fix a typo.
......
......@@ -8809,6 +8809,7 @@ loc_descriptor_from_tree (loc, addressp)
case NON_LVALUE_EXPR:
case VIEW_CONVERT_EXPR:
case SAVE_EXPR:
case MODIFY_EXPR:
return loc_descriptor_from_tree (TREE_OPERAND (loc, 0), addressp);
case COMPONENT_REF:
......
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