diff options
author | Steven Bosscher <steven@gcc.gnu.org> | 2012-05-04 19:37:59 +0000 |
---|---|---|
committer | Steven Bosscher <steven@gcc.gnu.org> | 2012-05-04 19:37:59 +0000 |
commit | 593dbe119116727d9af8dcccf8f6cb6f7a98c243 (patch) | |
tree | aea7a92f45feaea479eac6a725605bbb4069c390 /gcc/rtl.def | |
parent | 780140d3aff36953179cad94fb5fd2c555e24914 (diff) | |
download | gcc-593dbe119116727d9af8dcccf8f6cb6f7a98c243.zip gcc-593dbe119116727d9af8dcccf8f6cb6f7a98c243.tar.gz gcc-593dbe119116727d9af8dcccf8f6cb6f7a98c243.tar.bz2 |
rtl.def (ATTR_FLAG): Remove probability indicating flags.
* rtl.def (ATTR_FLAG): Remove probability indicating flags.
* genattr.c (main): Remove ATTR_FLAG_likely, ATTR_FLAG_unlikely,
ATTR_FLAG_very_likely, and ATTR_FLAG_very_unlikely.
* reorg.c (get_jump_flags): Do not set the removed flags.
From-SVN: r187178
Diffstat (limited to 'gcc/rtl.def')
-rw-r--r-- | gcc/rtl.def | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/rtl.def b/gcc/rtl.def index 955e8e4..0695d64 100644 --- a/gcc/rtl.def +++ b/gcc/rtl.def @@ -1268,9 +1268,7 @@ DEF_RTL_EXPR(EQ_ATTR_ALT, "eq_attr_alt", "ii", RTX_EXTRA) true for the insn being scheduled in reorg. genattr.c defines the following flags which can be tested by - (attr_flag "foo") expressions in eligible_for_delay. - - forward, backward, very_likely, likely, very_unlikely, and unlikely. */ + (attr_flag "foo") expressions in eligible_for_delay: forward, backward. */ DEF_RTL_EXPR (ATTR_FLAG, "attr_flag", "s", RTX_EXTRA) |