Commit 22362755 by Tim Josling Committed by Tim Josling

treelang fix for rs6000.

From-SVN: r67613
parent 797c8a92
2003-06-08 Tim Josling <tej@melbpc.org.au>
* treetree.c (c_lex): Add fake routine to satisfy RS6000 backend.
Thu Jun 5 18:33:40 CEST 2003 Jan Hubicka <jh@suse.cz> Thu Jun 5 18:33:40 CEST 2003 Jan Hubicka <jh@suse.cz>
* Make-lang.in: Add support for stageprofile and stagefeedback * Make-lang.in: Add support for stageprofile and stagefeedback
......
...@@ -854,6 +854,16 @@ objc_comptypes (tree lhs ATTRIBUTE_UNUSED, ...@@ -854,6 +854,16 @@ objc_comptypes (tree lhs ATTRIBUTE_UNUSED,
return 0; return 0;
} }
/* Should not be called for treelang. Needed by RS6000 backend. */
int c_lex (tree *value);
int
c_lex (tree *value ATTRIBUTE_UNUSED)
{
abort ();
}
/* Should not be called for treelang. */ /* Should not be called for treelang. */
tree tree
...@@ -1273,3 +1283,4 @@ get_string (const char *s, size_t l) ...@@ -1273,3 +1283,4 @@ get_string (const char *s, size_t l)
t = get_identifier_with_length (s, l); t = get_identifier_with_length (s, l);
return IDENTIFIER_POINTER(t); return IDENTIFIER_POINTER(t);
} }
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