From 466b0dd3fca1ba388befd7f600a714c096a713c1 Mon Sep 17 00:00:00 2001 From: Mark Mitchell Date: Thu, 22 Apr 1999 17:37:35 +0000 Subject: [PATCH] gxx.gperf (RETURN): Rename to RETURN_KEYWORD to avoid clashes with the RTL code RETURN. * gxx.gperf (RETURN): Rename to RETURN_KEYWORD to avoid clashes with the RTL code RETURN. * hash.h: Regenerated. * lex.c (reinit_parse_for_block): Use RETURN_KEYWORD. * parse.y: Replace RETURN with RETURN_KEYWORD throughout. * parse.c: Regenerated. * parse.h: Likewise. * pt.c: Include varray.h. Include rtl.h since varray.h requires it. (inline_parm_levels): New variable. (inline_parm_levels_used): Likewise. (maybe_begin_member_template_processing): Update them. (maybe_end_member_template_processing): Use them, rather than guessing how many levels to pop. From-SVN: r26588 --- gcc/cp/parse.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/cp/parse.h b/gcc/cp/parse.h index 5f21a767bc3..c3615429efe 100644 --- a/gcc/cp/parse.h +++ b/gcc/cp/parse.h @@ -21,7 +21,7 @@ typedef union {long itype; tree ttype; char *strtype; enum tree_code code; flagg #define DEFAULT 277 #define BREAK 278 #define CONTINUE 279 -#define RETURN 280 +#define RETURN_KEYWORD 280 #define GOTO 281 #define ASM_KEYWORD 282 #define TYPEOF 283 -- 2.30.2