From: Alexandre Petit-Bianco Date: Sun, 12 Dec 1999 19:54:35 +0000 (+0000) Subject: parse.h (EXPR_WFL_QUALIFICATION): Temporary uses the third operand of a WFL... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6a50bd919b891a53c32fc4753e79141edd89a031;p=gcc.git parse.h (EXPR_WFL_QUALIFICATION): Temporary uses the third operand of a WFL... Fri Dec 10 16:13:48 1999 Alexandre Petit-Bianco * parse.h (EXPR_WFL_QUALIFICATION): Temporary uses the third operand of a WFL, until the Java front-end gets fixed with regard to Mark Mitchell's gcc/tree.h patch (1999-12-04.) From-SVN: r30878 --- diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index 2a9a10b813e..66849c3905b 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,3 +1,9 @@ +Fri Dec 10 16:13:48 1999 Alexandre Petit-Bianco + + * parse.h (EXPR_WFL_QUALIFICATION): Temporary uses the third + operand of a WFL, until the Java front-end gets fixed with regard + to Mark Mitchell's gcc/tree.h patch (1999-12-04.) + 1999-12-10 Andrew Haley * parse.h (BUILD_THROW): Add support for sjlj-exceptions. diff --git a/gcc/java/parse.h b/gcc/java/parse.h index 692b33e9631..4d3b9ee98e3 100644 --- a/gcc/java/parse.h +++ b/gcc/java/parse.h @@ -487,7 +487,7 @@ typedef struct _jdeplist { build_expr_wfl ((NODE), input_filename, EXPR_WFL_LINENO ((WFL)), \ EXPR_WFL_COLNO ((WFL))) -#define EXPR_WFL_QUALIFICATION(WFL) TREE_OPERAND ((WFL), 1) +#define EXPR_WFL_QUALIFICATION(WFL) TREE_OPERAND ((WFL), 2) #define QUAL_WFL(NODE) TREE_PURPOSE (NODE) #define QUAL_RESOLUTION(NODE) TREE_VALUE (NODE) #define QUAL_DECL_TYPE(NODE) GET_SKIP_TYPE (NODE)