Commit 053007ce by Zdenek Dvorak Committed by Zdenek Dvorak

df.h (DF_REG_SIZE): Return the length of the initialized part of the array.

	* df.h (DF_REG_SIZE): Return the length of the initialized
	part of the array.

From-SVN: r110746
parent fd97e465
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.
......
......@@ -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)])
......
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