Commit c96208fa by Denis Chertykov Committed by Denis Chertykov

cse.c (cse_process_notes): Replace any registers if the address remains valid.

	* cse.c (cse_process_notes): Replace any registers if the address
	remains valid.

From-SVN: r44406
parent 11f68165
Thu Jul 26 22:22:21 2001 Denis Chertykov <denisc@overta.ru>
* cse.c (cse_process_notes): Replace any registers if the address
remains valid.
Thu Jul 26 14:04:03 EDT 2001 John Wehle (john@feith.com) Thu Jul 26 14:04:03 EDT 2001 John Wehle (john@feith.com)
* basic-block.h (PROP_ALLOW_CFG_CHANGES): Define. * basic-block.h (PROP_ALLOW_CFG_CHANGES): Define.
......
...@@ -6440,7 +6440,8 @@ cse_process_notes (x, object) ...@@ -6440,7 +6440,8 @@ cse_process_notes (x, object)
return x; return x;
case MEM: case MEM:
XEXP (x, 0) = cse_process_notes (XEXP (x, 0), x); validate_change (x, &XEXP (x, 0),
cse_process_notes (XEXP (x, 0), x), 0);
return x; return x;
case EXPR_LIST: case EXPR_LIST:
......
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