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/genattr.c | |
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/genattr.c')
-rw-r--r-- | gcc/genattr.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/gcc/genattr.c b/gcc/genattr.c index 34e710d..33030b1 100644 --- a/gcc/genattr.c +++ b/gcc/genattr.c @@ -344,14 +344,9 @@ main (int argc, char **argv) /* Output flag masks for use by reorg. - Flags are used to hold branch direction and prediction information - for use by eligible_for_... */ + Flags are used to hold branch direction for use by eligible_for_... */ printf("\n#define ATTR_FLAG_forward\t0x1\n"); printf("#define ATTR_FLAG_backward\t0x2\n"); - printf("#define ATTR_FLAG_likely\t0x4\n"); - printf("#define ATTR_FLAG_very_likely\t0x8\n"); - printf("#define ATTR_FLAG_unlikely\t0x10\n"); - printf("#define ATTR_FLAG_very_unlikely\t0x20\n"); puts("\n#endif /* GCC_INSN_ATTR_H */"); |