diff options
author | Geoffrey Keating <geoffk@apple.com> | 2004-05-11 21:35:57 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@gcc.gnu.org> | 2004-05-11 21:35:57 +0000 |
commit | bed7b8f18dd74f7173c06fc1ed202db204e67913 (patch) | |
tree | 10fbaf49823947f04d48e2796822dcdcbd2188eb /gcc | |
parent | c72c42e8fbfa79b69404c9c3eb6e067661a29a89 (diff) | |
download | gcc-bed7b8f18dd74f7173c06fc1ed202db204e67913.zip gcc-bed7b8f18dd74f7173c06fc1ed202db204e67913.tar.gz gcc-bed7b8f18dd74f7173c06fc1ed202db204e67913.tar.bz2 |
* doc/gty.texi (GTY Options): Clarify example.
From-SVN: r81718
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/doc/gty.texi | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e1f4cf0..f436054 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-05-11 Geoffrey Keating <geoffk@apple.com> + + * doc/gty.texi (GTY Options): Clarify example. + 2004-05-11 Fariborz Jahanian <fjahanian@apple.com> * config/rs6000/rs6000.c (rs6000_handle_altivec_attribute): diff --git a/gcc/doc/gty.texi b/gcc/doc/gty.texi index 05d9b9e..d43feca 100644 --- a/gcc/doc/gty.texi +++ b/gcc/doc/gty.texi @@ -231,7 +231,7 @@ typedef struct GTY(()) @{ @end smallexample and then declare variables like this: @smallexample - htab_t GTY ((param_is (union tree_node))) ict; + static htab_t GTY ((param_is (union tree_node))) ict; @end smallexample @findex param@var{n}_is |