diff options
author | Joel Brobecker <brobecker@adacore.com> | 2017-11-09 11:58:37 -0800 |
---|---|---|
committer | Joel Brobecker <brobecker@adacore.com> | 2017-11-09 12:02:27 -0800 |
commit | 31432a672fd40058a714eb2791ea1c3168ccc4f1 (patch) | |
tree | 3df73b27b04debbdb4cc32ab821cac0b88fc7bef /gdb/ada-lang.c | |
parent | 52c6b71b65139cad73ada8df81293fd645eac173 (diff) | |
download | binutils-31432a672fd40058a714eb2791ea1c3168ccc4f1.zip binutils-31432a672fd40058a714eb2791ea1c3168ccc4f1.tar.gz binutils-31432a672fd40058a714eb2791ea1c3168ccc4f1.tar.bz2 |
fix typos in ada-lang.c comment
gdb/ChangeLog:
* ada-lang.c: Fix some typos in the general command documenting
how Ada expressions are being evaluated and how their result
is printed.
Diffstat (limited to 'gdb/ada-lang.c')
-rw-r--r-- | gdb/ada-lang.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c index 7494733..ca5cdd1 100644 --- a/gdb/ada-lang.c +++ b/gdb/ada-lang.c @@ -10303,14 +10303,14 @@ ada_value_cast (struct type *type, struct value *arg2, enum noside noside) one element out of that array. On the other hand, fixing should not be performed on the elements when taking a slice of an array! - Note that one of the side-effects of miscomputing the offset and + Note that one of the side effects of miscomputing the offset and size of each field is that we end up also miscomputing the size of the containing type. This can have adverse results when computing the value of an entity. GDB fetches the value of an entity based on the size of its type, and thus a wrong size causes GDB to fetch the wrong amount of memory. In the case where the computed size is too small, GDB fetches too little data to print the value of our - entiry. Results in this case as unpredicatble, as we usually read + entity. Results in this case are unpredictable, as we usually read past the buffer containing the data =:-o. */ /* Implement the evaluate_exp routine in the exp_descriptor structure |