From: Yao Qi Date: Tue, 15 Apr 2014 03:39:26 +0000 (+0800) Subject: Update comments to TERNOP_SLICE X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c9402c95796b6b734bdeecf69a57ca08140f677e;p=binutils-gdb.git Update comments to TERNOP_SLICE TERNOP_SLICE was added for language Chill, but it is used for Ada and D later. Since language Chill was removed from GDB, TERNOP_SLICE is only used for Ada and D. This patch is to update its comments. gdb: 2014-07-20 Yao Qi * std-operator.def: Update comments to TERNOP_SLICE. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 0f258a03948..e25e9443785 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2014-07-20 Yao Qi + + * std-operator.def: Update comments to TERNOP_SLICE. + 2014-07-20 Yao Qi * std-operator.def: Remove BINOP_RANGE. diff --git a/gdb/std-operator.def b/gdb/std-operator.def index c33a287c2a6..24c3a2b1444 100644 --- a/gdb/std-operator.def +++ b/gdb/std-operator.def @@ -93,8 +93,8 @@ OP (BINOP_END) /* Operates on three values computed by following subexpressions. */ OP (TERNOP_COND) /* ?: */ -/* A sub-string/sub-array. (the deleted) Chill syntax: - OP1(OP2:OP3). Return elements OP2 through OP3 of OP1. */ +/* A sub-string/sub-array. Ada syntax: OP1(OP2..OP3). Return + elements OP2 through OP3 of OP1. */ OP (TERNOP_SLICE) /* Multidimensional subscript operator, such as Modula-2 x[a,b,...].