diff options
author | Daniel Berlin <dan@cgsoftware.com> | 2001-08-26 15:02:08 +0000 |
---|---|---|
committer | Daniel Berlin <dberlin@gcc.gnu.org> | 2001-08-26 15:02:08 +0000 |
commit | 772b1404090767a38eec638250bd9ae30ac271cb (patch) | |
tree | 4817dd7fa0175c47ecf34a05f35baa602b5bb8ec /gcc/df.c | |
parent | 2dc55bc99fbb19ab0df8ae0ec3480f469bceb93e (diff) | |
download | gcc-772b1404090767a38eec638250bd9ae30ac271cb.tar.gz |
df.c (df_insn_modify): Realloc the INSN table here, if necessary, here, too.
2001-08-26 Daniel Berlin <dan@cgsoftware.com>
* df.c (df_insn_modify): Realloc the INSN table here, if
necessary, here, too.
From-SVN: r45183
Diffstat (limited to 'gcc/df.c')
-rw-r--r-- | gcc/df.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -2601,6 +2601,9 @@ df_insn_modify (df, bb, insn) uid = INSN_UID (insn); + if (uid >= df->insn_size) + df_insn_table_realloc (df, 0); + bitmap_set_bit (df->bbs_modified, bb->index); bitmap_set_bit (df->insns_modified, uid); |