aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorAlexandre Petit-Bianco <apbianco@cygnus.com>1999-12-12 19:54:35 +0000
committerAlexandre Petit-Bianco <apbianco@gcc.gnu.org>1999-12-12 11:54:35 -0800
commit6a50bd919b891a53c32fc4753e79141edd89a031 (patch)
tree6bff7b8bb88aeedc160cb0e02dcfe3a8040dec53 /gcc
parentbe821c5e6c13f7ac087e6aa2451dccd557b51054 (diff)
downloadgcc-6a50bd919b891a53c32fc4753e79141edd89a031.zip
gcc-6a50bd919b891a53c32fc4753e79141edd89a031.tar.gz
gcc-6a50bd919b891a53c32fc4753e79141edd89a031.tar.bz2
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')
-rw-r--r--gcc/java/ChangeLog6
-rw-r--r--gcc/java/parse.h2
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog
index 2a9a10b..66849c3 100644
--- a/gcc/java/ChangeLog
+++ b/gcc/java/ChangeLog
@@ -1,3 +1,9 @@
+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.)
+
1999-12-10 Andrew Haley <aph@cygnus.com>
* parse.h (BUILD_THROW): Add support for sjlj-exceptions.
diff --git a/gcc/java/parse.h b/gcc/java/parse.h
index 692b33e..4d3b9ee 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)