diff options
| author | bje <bje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-07-24 03:35:02 +0000 |
|---|---|---|
| committer | bje <bje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-07-24 03:35:02 +0000 |
| commit | ce9abfc3c28b449266ce3f4b90efcea3a1e3b17a (patch) | |
| tree | db6a1ccdbd86f2503431dd89b1c19c11f1d5d98b /gcc | |
| parent | 11011508a7e8c7ee87396fafa91eeb5c2863e243 (diff) | |
| download | ppe42-gcc-ce9abfc3c28b449266ce3f4b90efcea3a1e3b17a.tar.gz ppe42-gcc-ce9abfc3c28b449266ce3f4b90efcea3a1e3b17a.zip | |
* config/rs6000/rs6000-c.c: Move GTY(()) markers to match
conventional usage.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@138104 138bc75d-0d04-0410-961f-82ee72b054a4
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 4124fd03e28..545ca146f3e 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 ce1ec4b9665..76c92352b57 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; |

