[Committed] Tidy up whitespace in df.h
Roger Sayle
roger@eyesopen.com
Sun Apr 4 21:23:00 GMT 2004
The following trivial patch tidies up the indentation in the definitions
of the DF_ flags in df.h. Although not clear in patch below, all of the
numeric flag values are now aligned.
The following patch was tested on i686-pc-linux-gnu with a full bootstrap,
all languages except treelang. Committed to mainline CVS.
2004-04-04 Roger Sayle <roger@eyesopen.com>
* df.h: Tidy up whitespace in the definitions of the DF_ flags.
Index: df.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/df.h,v
retrieving revision 1.23
diff -c -3 -p -r1.23 df.h
*** df.h 24 Feb 2004 13:55:06 -0000 1.23
--- df.h 4 Apr 2004 18:53:48 -0000
*************** along with GCC; see the file COPYING. I
*** 20,37 ****
Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA. */
! #define DF_RD 1 /* Reaching definitions. */
! #define DF_RU 2 /* Reaching uses. */
! #define DF_LR 4 /* Live registers. */
! #define DF_DU_CHAIN 8 /* Def-use chain. */
! #define DF_UD_CHAIN 16 /* Use-def chain. */
#define DF_REG_INFO 32 /* Register info. */
#define DF_RD_CHAIN 64 /* Reg-def chain. */
! #define DF_RU_CHAIN 128 /* Reg-use chain. */
! #define DF_ALL 255
! #define DF_HARD_REGS 1024 /* Mark hard registers. */
! #define DF_EQUIV_NOTES 2048 /* Mark uses present in EQUIV/EQUAL notes. */
! #define DF_FOR_REGALLOC 4096 /* If called for the register allocator. */
enum df_ref_type {DF_REF_REG_DEF, DF_REF_REG_USE, DF_REF_REG_MEM_LOAD,
DF_REF_REG_MEM_STORE};
--- 20,37 ----
Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA. */
! #define DF_RD 1 /* Reaching definitions. */
! #define DF_RU 2 /* Reaching uses. */
! #define DF_LR 4 /* Live registers. */
! #define DF_DU_CHAIN 8 /* Def-use chain. */
! #define DF_UD_CHAIN 16 /* Use-def chain. */
#define DF_REG_INFO 32 /* Register info. */
#define DF_RD_CHAIN 64 /* Reg-def chain. */
! #define DF_RU_CHAIN 128 /* Reg-use chain. */
! #define DF_ALL 255
! #define DF_HARD_REGS 1024 /* Mark hard registers. */
! #define DF_EQUIV_NOTES 2048 /* Mark uses present in EQUIV/EQUAL notes. */
! #define DF_FOR_REGALLOC 4096 /* If called for the register allocator. */
enum df_ref_type {DF_REF_REG_DEF, DF_REF_REG_USE, DF_REF_REG_MEM_LOAD,
DF_REF_REG_MEM_STORE};
Roger
--
More information about the Gcc-patches
mailing list