Commit 6ef30017 by Philip Blundell Committed by Mark Mitchell

re PR tree-optimization/15089 (local register variable with a specified register is bad)

	PR wrong-code/15089
	* loop.c (scan_loop): Do not move user-specified register
	assignments.

From-SVN: r83684
parent 7619c085
2004-06-25 Philip Blundell <philb@gnu.org>
PR wrong-code/15089
* loop.c (scan_loop): Do not move user-specified register
assignments.
2004-06-25 DJ Delorie <dj@redhat.com>
* c-common.h (warn_cast_qual, warn_missing_format_attribute,
......
......@@ -931,6 +931,7 @@ scan_loop (struct loop *loop, int flags)
|| (! (REG_P (SET_SRC (set))
&& (REGNO (SET_SRC (set))
< FIRST_PSEUDO_REGISTER))))
&& regno >= FIRST_PSEUDO_REGISTER
/* This test is not redundant; SET_SRC (set) might be
a call-clobbered register and the life of REGNO
might span a call. */
......
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