diff options
author | sayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-04-04 21:12:35 +0000 |
---|---|---|
committer | sayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-04-04 21:12:35 +0000 |
commit | 98ccd331a1b7d8a9bc36f44cb796e8069d510f86 (patch) | |
tree | 9107b3502aacaa95d15ea12a0501fb7b016fdd99 /gcc/df.h | |
parent | c526271f16db3b57d4fc33a4079e385a632c482d (diff) | |
download | linaro-gcc-98ccd331a1b7d8a9bc36f44cb796e8069d510f86.tar.gz linaro-gcc-98ccd331a1b7d8a9bc36f44cb796e8069d510f86.tar.bz2 linaro-gcc-98ccd331a1b7d8a9bc36f44cb796e8069d510f86.zip |
* df.h: Tidy up whitespace in the definitions of the DF_ flags.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@80399 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/df.h')
-rw-r--r-- | gcc/df.h | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -20,18 +20,18 @@ along with GCC; see the file COPYING. If not, write to the Free 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_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. */ +#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}; |