aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYao Qi <yao@codesourcery.com>2014-04-17 09:14:34 +0800
committerYao Qi <yao@codesourcery.com>2014-07-21 03:46:49 +0800
commit91101fe524e5ae8a912880bf3350ad93d511181a (patch)
treedf166dc243347e6ae14c9520b923f8d7cab4fb7c
parentc9402c95796b6b734bdeecf69a57ca08140f677e (diff)
downloadgdb-91101fe524e5ae8a912880bf3350ad93d511181a.zip
gdb-91101fe524e5ae8a912880bf3350ad93d511181a.tar.gz
gdb-91101fe524e5ae8a912880bf3350ad93d511181a.tar.bz2
Remove Chill from comments
gdb: 2014-07-20 Yao Qi <yao@codesourcery.com> * eval.c: Remove "Chill" from comments. * gdbtypes.h: Likewise. * symtab.h: Likewise.
-rw-r--r--gdb/ChangeLog6
-rw-r--r--gdb/eval.c11
-rw-r--r--gdb/gdbtypes.h7
-rw-r--r--gdb/symtab.h2
4 files changed, 15 insertions, 11 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index e25e944..164a2a2 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,11 @@
2014-07-20 Yao Qi <yao@codesourcery.com>
+ * eval.c: Remove "Chill" from comments.
+ * gdbtypes.h: Likewise.
+ * symtab.h: Likewise.
+
+2014-07-20 Yao Qi <yao@codesourcery.com>
+
* std-operator.def: Update comments to TERNOP_SLICE.
2014-07-20 Yao Qi <yao@codesourcery.com>
diff --git a/gdb/eval.c b/gdb/eval.c
index f075096..5e64e54 100644
--- a/gdb/eval.c
+++ b/gdb/eval.c
@@ -346,12 +346,11 @@ evaluate_struct_tuple (struct value *struct_val,
return struct_val;
}
-/* Recursive helper function for setting elements of array tuples for
- (the deleted) Chill. The target is ARRAY (which has bounds
- LOW_BOUND to HIGH_BOUND); the element value is ELEMENT; EXP, POS
- and NOSIDE are as usual. Evaluates index expresions and sets the
- specified element(s) of ARRAY to ELEMENT. Returns last index
- value. */
+/* Recursive helper function for setting elements of array tuples.
+ The target is ARRAY (which has bounds LOW_BOUND to HIGH_BOUND); the
+ element value is ELEMENT; EXP, POS and NOSIDE are as usual.
+ Evaluates index expresions and sets the specified element(s) of
+ ARRAY to ELEMENT. Returns last index value. */
static LONGEST
init_array_element (struct value *array, struct value *element,
diff --git a/gdb/gdbtypes.h b/gdb/gdbtypes.h
index bb6352d..5008ef4 100644
--- a/gdb/gdbtypes.h
+++ b/gdb/gdbtypes.h
@@ -132,10 +132,9 @@ enum type_code
TYPE_CODE_RANGE, /**< Range (integers within spec'd bounds). */
/* * A string type which is like an array of character but prints
- differently (at least for (the deleted) CHILL). It does not
- contain a length field as Pascal strings (for many Pascals,
- anyway) do; if we want to deal with such strings, we should use
- a new type code. */
+ differently. It does not contain a length field as Pascal
+ strings (for many Pascals, anyway) do; if we want to deal with
+ such strings, we should use a new type code. */
TYPE_CODE_STRING,
/* * Unknown type. The length field is valid if we were able to
diff --git a/gdb/symtab.h b/gdb/symtab.h
index 399ae54..4a47d48 100644
--- a/gdb/symtab.h
+++ b/gdb/symtab.h
@@ -271,7 +271,7 @@ extern const char *symbol_demangled_name
extern int demangle;
/* Macro that returns the name to be used when sorting and searching symbols.
- In C++, Chill, and Java, we search for the demangled form of a name,
+ In C++ and Java, we search for the demangled form of a name,
and so sort symbols accordingly. In Ada, however, we search by mangled
name. If there is no distinct demangled name, then SYMBOL_SEARCH_NAME
returns the same value (same pointer) as SYMBOL_LINKAGE_NAME. */