diff options
author | Tom Tromey <tromey@redhat.com> | 2006-05-04 23:20:40 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2006-05-04 23:20:40 +0000 |
commit | 532f41fa2a2ab2f80ae72d34655e3dbd32ee3d4a (patch) | |
tree | bba65c1f6bd21f87e80542698a196d95f1f76488 /gcc/java/java-tree.def | |
parent | 1958f718ef0d09f6cf9eccc1f4a13b7804fbc880 (diff) | |
download | gcc-532f41fa2a2ab2f80ae72d34655e3dbd32ee3d4a.zip gcc-532f41fa2a2ab2f80ae72d34655e3dbd32ee3d4a.tar.gz gcc-532f41fa2a2ab2f80ae72d34655e3dbd32ee3d4a.tar.bz2 |
* java-tree.def (THIS_EXPR): Now a tcc_expression.
From-SVN: r113542
Diffstat (limited to 'gcc/java/java-tree.def')
-rw-r--r-- | gcc/java/java-tree.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/java-tree.def b/gcc/java/java-tree.def index ac8f83a..7e2c650 100644 --- a/gcc/java/java-tree.def +++ b/gcc/java/java-tree.def @@ -39,7 +39,7 @@ DEFTREECODE (NEW_ANONYMOUS_ARRAY_EXPR, "new_anonymous_array", DEFTREECODE (NEW_CLASS_EXPR, "new_class_expr", tcc_expression, 3) /* Defines `this' as an expression. */ -DEFTREECODE (THIS_EXPR, "this", tcc_unary, 0) +DEFTREECODE (THIS_EXPR, "this", tcc_expression, 0) /* A labeled block. Operand 0 is the label that will be generated to mark the end of the block. Operand 1 is the labeled block body. */ |