diff options
author | Mark Mitchell <mark@codesourcery.com> | 2000-08-01 06:42:51 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2000-08-01 06:42:51 +0000 |
commit | da92f7ff07103b11b2dbbb5f42fa7db07daf2fb4 (patch) | |
tree | 9a717ef1d1b167a2f289f6b795fd68ed53cb3a69 /gcc | |
parent | 89820b4331124829971b83929e8ae5f650646c1e (diff) | |
download | gcc-da92f7ff07103b11b2dbbb5f42fa7db07daf2fb4.zip gcc-da92f7ff07103b11b2dbbb5f42fa7db07daf2fb4.tar.gz gcc-da92f7ff07103b11b2dbbb5f42fa7db07daf2fb4.tar.bz2 |
* flow.c (clear_log_links): Fix typo.
From-SVN: r35406
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/flow.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7c24fda..d8212af 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-07-31 Mark Mitchell <mark@codesourcery.com> + + * flow.c (clear_log_links): Fix typo. + Mon Jul 31 22:19:24 2000 Jeffrey A Law (law@cygnus.com) * loop.c (check_dbra_loop): Make change from July 17, 2000 work @@ -7777,7 +7777,7 @@ clear_log_links (insns) for (b = 0; b < n_basic_blocks; b++) { - basic_block bb = BASIC_BLOCK (i); + basic_block bb = BASIC_BLOCK (b); bb->global_live_at_start = NULL; bb->global_live_at_end = NULL; |