diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-05-13 12:18:27 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-05-13 12:18:27 +0000 |
commit | 2fe63c7b35d597c556e9e137591d4b3b0ba6c319 (patch) | |
tree | cc012eb02dc988e1a1902d75f597497fe8850a6d /gcc/flow.c | |
parent | 8d82093756b2589b7ba541c6d1f5ea5bc316c579 (diff) | |
download | gcc-2fe63c7b35d597c556e9e137591d4b3b0ba6c319.tar.gz |
* flow.c (dump_flow_info): Also print number of sets and
whether or not the pseudo is a user variable.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19710 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/flow.c')
-rw-r--r-- | gcc/flow.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/flow.c b/gcc/flow.c index 18bbf682310..2598f8c3513 100644 --- a/gcc/flow.c +++ b/gcc/flow.c @@ -3039,6 +3039,11 @@ dump_flow_info (file) i, REG_N_REFS (i), REG_LIVE_LENGTH (i)); if (REG_BASIC_BLOCK (i) >= 0) fprintf (file, " in block %d", REG_BASIC_BLOCK (i)); + if (REG_N_SETS (i)) + fprintf (file, "; set %d time%s", REG_N_SETS (i), + (REG_N_SETS (i) == 1) ? "" : "s"); + if (REG_USERVAR_P (regno_reg_rtx[i])) + fprintf (file, "; user var"); if (REG_N_DEATHS (i) != 1) fprintf (file, "; dies in %d places", REG_N_DEATHS (i)); if (REG_N_CALLS_CROSSED (i) == 1) |