diff options
Diffstat (limited to 'lang/gcc45')
-rw-r--r-- | lang/gcc45/files/patch-gengtype-yacc.y | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/lang/gcc45/files/patch-gengtype-yacc.y b/lang/gcc45/files/patch-gengtype-yacc.y new file mode 100644 index 000000000000..cf227a4b58a6 --- /dev/null +++ b/lang/gcc45/files/patch-gengtype-yacc.y @@ -0,0 +1,29 @@ +--- gcc/gengtype-yacc.y.orig Fri Sep 20 00:33:24 2002 ++++ gcc/gengtype-yacc.y Tue Apr 22 09:11:27 2003 +@@ -24,6 +24,9 @@ + #include "system.h" + #include "gengtype.h" + #define YYERROR_VERBOSE ++ ++#define malloc xmalloc ++#define realloc xrealloc + %} + + %union { +@@ -37,11 +40,11 @@ + %token <t>ENT_STRUCT + %token ENT_EXTERNSTATIC + %token ENT_YACCUNION +-%token GTY_TOKEN "GTY" +-%token UNION "union" +-%token STRUCT "struct" +-%token ENUM "enum" +-%token ALIAS "ptr_alias" ++%token GTY_TOKEN ++%token UNION ++%token STRUCT ++%token ENUM ++%token ALIAS + %token <s>PARAM_IS + %token NUM + %token PERCENTPERCENT "%%" |