rs6000-c.c (altivec_categorize_keyword): Update for recent libcpp interface change.

* config/rs6000/rs6000-c.c (altivec_categorize_keyword): Update
	for recent libcpp interface change.
	(rs6000_macro_to_expand): Likewise.

From-SVN: r147352
This commit is contained in:
Ben Elliston 2009-05-10 23:17:55 +00:00 committed by Ben Elliston
parent af618949a4
commit 7a2738fadf
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2009-05-11 Ben Elliston <bje@au.ibm.com>
* config/rs6000/rs6000-c.c (altivec_categorize_keyword): Update
for recent libcpp interface change.
(rs6000_macro_to_expand): Likewise.
2009-05-10 Michael Matz <matz@suse.de>
PR target/40031

View file

@ -100,7 +100,7 @@ altivec_categorize_keyword (const cpp_token *tok)
{
if (tok->type == CPP_NAME)
{
cpp_hashnode *ident = tok->val.node;
cpp_hashnode *ident = tok->val.node.node;
if (ident == C_CPP_HASHNODE (vector_keyword))
return C_CPP_HASHNODE (__vector_keyword);
@ -150,7 +150,7 @@ init_vector_keywords (void)
static cpp_hashnode *
rs6000_macro_to_expand (cpp_reader *pfile, const cpp_token *tok)
{
cpp_hashnode *expand_this = tok->val.node;
cpp_hashnode *expand_this = tok->val.node.node;
cpp_hashnode *ident;
ident = altivec_categorize_keyword (tok);