i386.c (ix86_eax_live_at_start_p): Use df_get_live_out.
authorDave Korn <dave.korn@artimi.com>
Wed, 13 Jun 2007 10:21:50 +0000 (10:21 +0000)
committerDanny Smith <dannysmith@gcc.gnu.org>
Wed, 13 Jun 2007 10:21:50 +0000 (10:21 +0000)
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

gcc/ChangeLog
gcc/config/i386/i386.c

index d0fba3ff3bc365ce89d7bb9c1b6a37c196962d77..d5a3eaa553646696aaced0155d6332fd39dbe442 100644 (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>
 
        * auto-inc-dec.c, c-incpath.c, config/c4x/libgcc.S,
index 61a24eedadee57fa467a32cd29e1f09932930793..be8a3effa00af74b216d69b9504784322f0675b6 100644 (file)
@@ -3015,7 +3015,7 @@ ix86_eax_live_at_start_p (void)
      to correct at this point.  This gives false positives for broken
      functions that might use uninitialized data that happens to be
      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.  */