diff options
author | Alexandre Petit-Bianco <apbianco@cygnus.com> | 1999-12-12 19:54:35 +0000 |
---|---|---|
committer | Alexandre Petit-Bianco <apbianco@gcc.gnu.org> | 1999-12-12 11:54:35 -0800 |
commit | 6a50bd919b891a53c32fc4753e79141edd89a031 (patch) | |
tree | 6bff7b8bb88aeedc160cb0e02dcfe3a8040dec53 /gcc/java/parse.h | |
parent | be821c5e6c13f7ac087e6aa2451dccd557b51054 (diff) | |
download | gcc-6a50bd919b891a53c32fc4753e79141edd89a031.tar.gz |
parse.h (EXPR_WFL_QUALIFICATION): Temporary uses the third operand of a WFL...
Fri Dec 10 16:13:48 1999 Alexandre Petit-Bianco <apbianco@cygnus.com>
* 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
Diffstat (limited to 'gcc/java/parse.h')
-rw-r--r-- | gcc/java/parse.h | 2 |
1 files changed, 1 insertions, 1 deletions
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) |