This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] Add name of loop_exit edge flag.


Hello,

commited as obvious.

Zdenek

	* cfg.c (dump_edge_info): Add name of loop_exit edge flag.

Index: cfg.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/cfg.c,v
retrieving revision 1.50
diff -c -3 -p -r1.50 cfg.c
*** cfg.c	19 Jul 2003 14:47:00 -0000	1.50
--- cfg.c	14 Aug 2003 18:18:08 -0000
*************** dump_edge_info (FILE *file, edge e, int 
*** 636,642 ****
      {
        static const char * const bitnames[] = {
  	"fallthru", "ab", "abcall", "eh", "fake", "dfs_back",
! 	"can_fallthru", "irreducible", "sibcall"
        };
        int comma = 0;
        int i, flags = e->flags;
--- 636,642 ----
      {
        static const char * const bitnames[] = {
  	"fallthru", "ab", "abcall", "eh", "fake", "dfs_back",
! 	"can_fallthru", "irreducible", "sibcall", "loop_exit"
        };
        int comma = 0;
        int i, flags = e->flags;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]