Commit 084087e1 by Richard Henderson Committed by Richard Henderson

* gengtype.c (walk_type): Allow paramN_is.

From-SVN: r61441
parent 4a13592e
2003-01-17 Richard Henderson <rth@redhat.com>
* gengtype.c (walk_type): Allow paramN_is.
2003-01-17 Nick Clifton <nickc@redhat.com> 2003-01-17 Nick Clifton <nickc@redhat.com>
* config/i960/t-960bare (i960-c.o): Add missing newline escape. * config/i960/t-960bare (i960-c.o): Add missing newline escape.
......
/* Process source files and output type information. /* Process source files and output type information.
Copyright (C) 2002 Free Software Foundation, Inc. Copyright (C) 2002, 2003 Free Software Foundation, Inc.
This file is part of GCC. This file is part of GCC.
...@@ -1560,6 +1560,10 @@ walk_type (t, d) ...@@ -1560,6 +1560,10 @@ walk_type (t, d)
; ;
else if (strcmp (oo->name, "param_is") == 0) else if (strcmp (oo->name, "param_is") == 0)
; ;
else if (strncmp (oo->name, "param", 5) == 0
&& ISDIGIT (oo->name[5])
&& strcmp (oo->name + 6, "_is") == 0)
;
else if (strcmp (oo->name, "chain_next") == 0) else if (strcmp (oo->name, "chain_next") == 0)
; ;
else if (strcmp (oo->name, "chain_prev") == 0) else if (strcmp (oo->name, "chain_prev") == 0)
......
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