This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[patch] Add name of loop_exit edge flag.
- From: Zdenek Dvorak <rakdver at atrey dot karlin dot mff dot cuni dot cz>
- To: gcc-patches at gcc dot gnu dot org
- Date: Thu, 14 Aug 2003 20:20:37 +0200
- Subject: [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;