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
This commit is contained in:
Dave Korn 2007-06-13 10:21:50 +00:00 committed by Danny Smith
parent 28b69d5df0
commit eaf7f7e727
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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,

View File

@ -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. */