diff options
author | Ben Elliston <bje@au.ibm.com> | 2008-07-24 03:35:02 +0000 |
---|---|---|
committer | Ben Elliston <bje@gcc.gnu.org> | 2008-07-24 13:35:02 +1000 |
commit | ce26ee21273d142d14a55bdd71a0c38875f4f052 (patch) | |
tree | db6a1ccdbd86f2503431dd89b1c19c11f1d5d98b /gcc | |
parent | 5c0e02b014c29694cb5fd6354793cbd0876ae9ef (diff) | |
download | gcc-ce26ee21273d142d14a55bdd71a0c38875f4f052.zip gcc-ce26ee21273d142d14a55bdd71a0c38875f4f052.tar.gz gcc-ce26ee21273d142d14a55bdd71a0c38875f4f052.tar.bz2 |
rs6000-c.c: Move GTY(()) markers to match conventional usage.
* config/rs6000/rs6000-c.c: Move GTY(()) markers to match
conventional usage.
From-SVN: r138104
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/rs6000/rs6000-c.c | 12 |
2 files changed, 11 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4124fd0..545ca14 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2008-07-24 Ben Elliston <bje@au.ibm.com> + + * config/rs6000/rs6000-c.c: Move GTY(()) markers to match + conventional usage. + 2008-07-23 Aaron W. LaFramboise <aaronavay62@aaronwl.com> * configure: Regenerate. diff --git a/gcc/config/rs6000/rs6000-c.c b/gcc/config/rs6000/rs6000-c.c index ce1ec4b..76c9235 100644 --- a/gcc/config/rs6000/rs6000-c.c +++ b/gcc/config/rs6000/rs6000-c.c @@ -85,12 +85,12 @@ rs6000_pragma_longcall (cpp_reader *pfile ATTRIBUTE_UNUSED) #define builtin_assert(TXT) cpp_assert (pfile, TXT) /* Keep the AltiVec keywords handy for fast comparisons. */ -static tree __vector_keyword; -static tree vector_keyword; -static tree __pixel_keyword; -static tree pixel_keyword; -static tree __bool_keyword; -static tree bool_keyword; +static GTY(()) tree __vector_keyword; +static GTY(()) tree vector_keyword; +static GTY(()) tree __pixel_keyword; +static GTY(()) tree pixel_keyword; +static GTY(()) tree __bool_keyword; +static GTY(()) tree bool_keyword; /* Preserved across calls. */ static tree expand_bool_pixel; |