diff options
author | Vladimir Makarov <vmakarov@redhat.com> | 2011-03-28 01:53:24 +0000 |
---|---|---|
committer | Vladimir Makarov <vmakarov@gcc.gnu.org> | 2011-03-28 01:53:24 +0000 |
commit | 99710245becabdfa97984d1f68a01f9876124417 (patch) | |
tree | 761665b37aeeeb5eb4e3f9b4770772ea49679cc0 /gcc/sched-int.h | |
parent | 0854e22029b6d45bc67140bf5d5493ee5c9294ef (diff) | |
download | gcc-99710245becabdfa97984d1f68a01f9876124417.zip gcc-99710245becabdfa97984d1f68a01f9876124417.tar.gz gcc-99710245becabdfa97984d1f68a01f9876124417.tar.bz2 |
re PR bootstrap/48307 (Bootstrap failure)
2011-03-27 Vladimir Makarov <vmakarov@redhat.com>
PR bootstrap/48307
Revert the previous patch.
From-SVN: r171589
Diffstat (limited to 'gcc/sched-int.h')
-rw-r--r-- | gcc/sched-int.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/sched-int.h b/gcc/sched-int.h index 10fd03c..9077c88 100644 --- a/gcc/sched-int.h +++ b/gcc/sched-int.h @@ -653,9 +653,9 @@ extern struct haifa_sched_info *current_sched_info; up. */ extern bool sched_pressure_p; -/* Map regno -> its pressure class. The map defined only when +/* Map regno -> its cover class. The map defined only when SCHED_PRESSURE_P is true. */ -extern enum reg_class *sched_regno_pressure_class; +extern enum reg_class *sched_regno_cover_class; /* Indexed by INSN_UID, the collection of all data associated with a single instruction. */ @@ -707,7 +707,7 @@ struct _haifa_deps_insn_data #define INCREASE_BITS 8 /* The structure describes how the corresponding insn increases the - register pressure for each pressure class. */ + register pressure for each cover class. */ struct reg_pressure_data { /* Pressure increase for given class because of clobber. */ @@ -736,7 +736,7 @@ struct reg_use_data }; /* The following structure describes used sets of registers by insns. - Registers are pseudos whose pressure class is not NO_REGS or hard + Registers are pseudos whose cover class is not NO_REGS or hard registers available for allocations. */ struct reg_set_data { @@ -804,7 +804,7 @@ struct _haifa_insn_data struct reg_pressure_data *reg_pressure; /* The following array contains maximal reg pressure between last scheduled insn and given insn. There is an element for each - pressure class of pseudos referenced in insns. This info updated + cover class of pseudos referenced in insns. This info updated after scheduling each insn for each insn between the two mentioned insns. */ int *max_reg_pressure; |