Commit eaf7f7e7 by Dave Korn Committed by Danny Smith

i386.c (ix86_eax_live_at_start_p): Use df_get_live_out.

2007-06-13  Dave Korn  <dave.korn@artimi.com>

	* config/i386/i386.c (ix86_eax_live_at_start_p): Use
	df_get_live_out.

From-SVN: r125673
parent 28b69d5d
2007-06-13 Dave Korn <dave.korn@artimi.com>
* config/i386/i386.c (ix86_eax_live_at_start_p): Use
df_get_live_out.
2007-06-13 Kazu Hirata <kazu@codesourcery.com> 2007-06-13 Kazu Hirata <kazu@codesourcery.com>
* auto-inc-dec.c, c-incpath.c, config/c4x/libgcc.S, * auto-inc-dec.c, c-incpath.c, config/c4x/libgcc.S,
......
...@@ -3015,7 +3015,7 @@ ix86_eax_live_at_start_p (void) ...@@ -3015,7 +3015,7 @@ ix86_eax_live_at_start_p (void)
to correct at this point. This gives false positives for broken to correct at this point. This gives false positives for broken
functions that might use uninitialized data that happens to be functions that might use uninitialized data that happens to be
allocated in eax, but who cares? */ allocated in eax, but who cares? */
return REGNO_REG_SET_P (DF_LIVE_OUT (ENTRY_BLOCK_PTR), 0); return REGNO_REG_SET_P (df_get_live_out (ENTRY_BLOCK_PTR), 0);
} }
/* Return true if TYPE has a variable argument list. */ /* Return true if TYPE has a variable argument 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