aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.def
diff options
context:
space:
mode:
authorAlexandre Petit-Bianco <apbianco@redhat.com>2001-07-31 19:28:43 -0700
committerAlexandre Petit-Bianco <apbianco@gcc.gnu.org>2001-07-31 19:28:43 -0700
commit6ad7895ac23ac971a2f3de9e7899a5389ec21a7c (patch)
tree6496ff51752066c862a5e55102eb82d5d6a55b19 /gcc/tree.def
parentb24a9e88395d563e90e7956f2b1cb8504db43511 (diff)
downloadgcc-6ad7895ac23ac971a2f3de9e7899a5389ec21a7c.zip
gcc-6ad7895ac23ac971a2f3de9e7899a5389ec21a7c.tar.gz
gcc-6ad7895ac23ac971a2f3de9e7899a5389ec21a7c.tar.bz2
*** empty log message ***
From-SVN: r44528
Diffstat (limited to 'gcc/tree.def')
-rw-r--r--gcc/tree.def4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree.def b/gcc/tree.def
index 56bc8ef..84801e6 100644
--- a/gcc/tree.def
+++ b/gcc/tree.def
@@ -472,8 +472,8 @@ DEFTREECODE (METHOD_CALL_EXPR, "method_call_expr", 'e', 4)
/* Specify a value to compute along with its corresponding cleanup.
Operand 0 argument is an expression whose value needs a cleanup.
- Operand 1 is an RTL_EXPR which will eventually represent that value.
- Operand 2 is the cleanup expression for the object.
+ Operand 1 is the cleanup expression for the object.
+ Operand 2 is an RTL_EXPR which will eventually represent that value.
The RTL_EXPR is used in this expression, which is how the expression
manages to act on the proper value.
The cleanup is executed by the first enclosing CLEANUP_POINT_EXPR, if