Commit 7a2738fa by Ben Elliston Committed by Ben Elliston

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
parent af618949
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> 2009-05-10 Michael Matz <matz@suse.de>
PR target/40031 PR target/40031
......
...@@ -100,7 +100,7 @@ altivec_categorize_keyword (const cpp_token *tok) ...@@ -100,7 +100,7 @@ altivec_categorize_keyword (const cpp_token *tok)
{ {
if (tok->type == CPP_NAME) 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)) if (ident == C_CPP_HASHNODE (vector_keyword))
return C_CPP_HASHNODE (__vector_keyword); return C_CPP_HASHNODE (__vector_keyword);
...@@ -150,7 +150,7 @@ init_vector_keywords (void) ...@@ -150,7 +150,7 @@ init_vector_keywords (void)
static cpp_hashnode * static cpp_hashnode *
rs6000_macro_to_expand (cpp_reader *pfile, const cpp_token *tok) 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; cpp_hashnode *ident;
ident = altivec_categorize_keyword (tok); ident = altivec_categorize_keyword (tok);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment