diff options
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/target-float.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 6fce234..f5bea32 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2021-01-02 Simon Marchi <simon.marchi@polymtl.ca> + + * target-float.c: Fix typos. + 2021-01-02 Hannes Domani <ssbssa@yahoo.de> * gdb-gdb.py.in: Fix main_type.flds_bnds.bounds pretty printer. diff --git a/gdb/target-float.c b/gdb/target-float.c index e287ace..692af59 100644 --- a/gdb/target-float.c +++ b/gdb/target-float.c @@ -1191,7 +1191,7 @@ public: const gdb_byte *y, const struct type *type_y) const override; private: - /* Local wrapper class to handle mpfr_t initalization and cleanup. */ + /* Local wrapper class to handle mpfr_t initialization and cleanup. */ class gdb_mpfr { public: @@ -2234,7 +2234,7 @@ get_target_float_ops_kind (const struct type *type) } } -/* Return target_float_ops to peform operations for KIND. */ +/* Return target_float_ops to perform operations for KIND. */ static const target_float_ops * get_target_float_ops (enum target_float_ops_kind kind) { |