Commit 75c2550a by Richard Kenner

Update comments for ARRAY_RANGE_REF

From-SVN: r42901
parent f375b7a7
...@@ -374,9 +374,9 @@ DEFTREECODE (BUFFER_REF, "buffer_ref", 'r', 1) ...@@ -374,9 +374,9 @@ DEFTREECODE (BUFFER_REF, "buffer_ref", 'r', 1)
Operand 0 is the array; operand 1 is a (single) array index. */ Operand 0 is the array; operand 1 is a (single) array index. */
DEFTREECODE (ARRAY_REF, "array_ref", 'r', 2) DEFTREECODE (ARRAY_REF, "array_ref", 'r', 2)
/* Likewise, except that the result is a range of the array. The starting /* Likewise, except that the result is a range ("slice") of the array. The
index of the array is taken from operand 0 and the size of the range starting index of the resulting array is taken from operand 1 and the size
is taken from the type of the expression. */ of the range is taken from the type of the expression. */
DEFTREECODE (ARRAY_RANGE_REF, "array_range_ref", 'r', 2) DEFTREECODE (ARRAY_RANGE_REF, "array_range_ref", 'r', 2)
/* Constructor: return an aggregate value made from specified components. /* Constructor: return an aggregate value made from specified components.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment