diff options
author | Geoffrey Keating <geoffk@apple.com> | 2003-03-18 19:49:41 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@gcc.gnu.org> | 2003-03-18 19:49:41 +0000 |
commit | f83b236e2a13b63ccb7330fba634be38dbdfbecf (patch) | |
tree | 4c0f58c516e01d2e2088522765aba447d0ac8103 /gcc | |
parent | e0ec941e485a9882a365e297a1dc656c69176f96 (diff) | |
download | gcc-f83b236e2a13b63ccb7330fba634be38dbdfbecf.zip gcc-f83b236e2a13b63ccb7330fba634be38dbdfbecf.tar.gz gcc-f83b236e2a13b63ccb7330fba634be38dbdfbecf.tar.bz2 |
* function.c (next_block_index): Mark with GTY.
From-SVN: r64551
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/function.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 16881c0..0fd20c8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -5,6 +5,8 @@ 2003-03-18 Geoffrey Keating <geoffk@apple.com> + * function.c (next_block_index): Mark with GTY. + * config/rs6000/rs6000.md (macho_correct_pic): Correct pattern. 2003-03-18 Richard Henderson <rth@redhat.com> diff --git a/gcc/function.c b/gcc/function.c index 0828969..73ba634 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -6072,7 +6072,7 @@ get_block_vector (block, n_blocks_p) return block_vector; } -static int next_block_index = 2; +static GTY(()) int next_block_index = 2; /* Set BLOCK_NUMBER for all the blocks in FN. */ |