df.h (DF_REG_SIZE): Return the length of the initialized part of the array.
authorZdenek Dvorak <dvorakz@suse.cz>
Wed, 8 Feb 2006 10:54:45 +0000 (11:54 +0100)
committerZdenek Dvorak <rakdver@gcc.gnu.org>
Wed, 8 Feb 2006 10:54:45 +0000 (10:54 +0000)
* df.h (DF_REG_SIZE): Return the length of the initialized
part of the array.

From-SVN: r110746

gcc/ChangeLog
gcc/df.h

index fa18763855b7bac2308b1dc3ffcd8dfac1627599..a165f5ec9c31ce651200d9b900107c5fc6dda731 100644 (file)
@@ -1,3 +1,8 @@
+2006-02-08  Zdenek Dvorak <dvorakz@suse.cz>
+
+       * df.h (DF_REG_SIZE): Return the length of the initialized
+       part of the array.
+
 2006-02-08  Nathan Sidwell  <nathan@codesourcery.com>
 
        * gcc/config/m68k/lb1sf68.asm (__divsf3, __divdf3, __mulsf3,
@@ -33,7 +38,6 @@
        * tree-eh.c (pass_lower_eh): Do not destroy PROP_gimple_leh.
        * cfgexpand.c (pass_expand): Destroy PROP_trees.
 
-
 2006-02-08  Jakub Jelinek  <jakub@redhat.com>
 
        * config.gcc (sparc-*-linux*): Add sparc/t-linux to tmake_file.
index 8c5108e3693f8c049cd4467592960e8293790c11..d6a76d89cf09c42451ecf5b6ceb1075a4e74a820 100644 (file)
--- a/gcc/df.h
+++ b/gcc/df.h
@@ -395,7 +395,7 @@ struct df
 
 /* Macros to access the register information from scan dataflow record.  */
 
-#define DF_REG_SIZE(DF) ((DF)->def_info.regs_size)
+#define DF_REG_SIZE(DF) ((DF)->def_info.regs_inited)
 #define DF_REG_DEF_GET(DF, REG) ((DF)->def_info.regs[(REG)])
 #define DF_REG_DEF_SET(DF, REG, VAL) ((DF)->def_info.regs[(REG)]=(VAL))
 #define DF_REG_USE_GET(DF, REG) ((DF)->use_info.regs[(REG)])