From 593dbe119116727d9af8dcccf8f6cb6f7a98c243 Mon Sep 17 00:00:00 2001 From: Steven Bosscher Date: Fri, 4 May 2012 19:37:59 +0000 Subject: 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 --- gcc/genattr.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'gcc/genattr.c') 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 */"); -- cgit v1.1