aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Petit-Bianco <apbianco@cygnus.com>1999-12-12 19:51:53 +0000
committerAlexandre Petit-Bianco <apbianco@gcc.gnu.org>1999-12-12 11:51:53 -0800
commitbe821c5e6c13f7ac087e6aa2451dccd557b51054 (patch)
treee7ece2e347cec480743129a49acba6be9d798fa1
parent2441e026586f37bafdd083bbd9e39528c97112e8 (diff)
downloadgcc-be821c5e6c13f7ac087e6aa2451dccd557b51054.zip
gcc-be821c5e6c13f7ac087e6aa2451dccd557b51054.tar.gz
gcc-be821c5e6c13f7ac087e6aa2451dccd557b51054.tar.bz2
tree.def (EXPR_WITH_FILE_LOCATION): Temporarily add a third operand, for use in the Java front-end.
Fri Dec 10 16:12:13 1999 Alexandre Petit-Bianco <apbianco@cygnus.com> * tree.def (EXPR_WITH_FILE_LOCATION): Temporarily add a third operand, for use in the Java front-end. From-SVN: r30877
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/tree.def6
2 files changed, 9 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 2d204bb..788025d 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -80,6 +80,11 @@
* i386.h (DEBUG_PRINT_REG): Constify a char*.
+Fri Dec 10 16:12:13 1999 Alexandre Petit-Bianco <apbianco@cygnus.com>
+
+ * tree.def (EXPR_WITH_FILE_LOCATION): Temporarily add a third
+ operand, for use in the Java front-end.
+
1999-12-10 Ben Collins <bcollins@debian.org>
* configure.in: Fix typo for "-64" in 64bit as check.
diff --git a/gcc/tree.def b/gcc/tree.def
index b34895b..2ba6f2d 100644
--- a/gcc/tree.def
+++ b/gcc/tree.def
@@ -794,8 +794,10 @@ DEFTREECODE (EXIT_BLOCK_EXPR, "exit_block_expr", 'e', 2)
information: a file name (EXPR_WFL_FILENAME); a line number
(EXPR_WFL_LINENO); and column number (EXPR_WFL_COLNO). It is
expanded as the contained node (EXPR_WFL_NODE); a line note should
- be emitted first if EXPR_WFL_EMIT_LINE_NOTE. */
-DEFTREECODE (EXPR_WITH_FILE_LOCATION, "expr_with_file_location", 'e', 2)
+ be emitted first if EXPR_WFL_EMIT_LINE_NOTE.
+ The third operand is only used in the Java front-end, and will
+ eventually be removed. */
+DEFTREECODE (EXPR_WITH_FILE_LOCATION, "expr_with_file_location", 'e', 3)
/* Switch expression.
Operand 0 is the expression used to perform the branch,