aboutsummaryrefslogtreecommitdiff
path: root/gdb/regcache.c
diff options
context:
space:
mode:
authorTom de Vries <tdevries@suse.de>2023-06-05 12:53:15 +0200
committerTom de Vries <tdevries@suse.de>2023-06-05 12:53:15 +0200
commit3bfdcabbc20d56ce25629b464262928a4f90c042 (patch)
tree46168190d7986e51b84abb4e1c7ab2a7c6b99200 /gdb/regcache.c
parentfc998e4cb708899b5f75d8d4d2b79ed162437c41 (diff)
downloadgdb-3bfdcabbc20d56ce25629b464262928a4f90c042.zip
gdb-3bfdcabbc20d56ce25629b464262928a4f90c042.tar.gz
gdb-3bfdcabbc20d56ce25629b464262928a4f90c042.tar.bz2
[gdb] Fix more typos
Fix some more typos: - distinquish -> distinguish - actualy -> actually - singe -> single - frash -> frame - chid -> child - dissassembler -> disassembler - uninitalized -> uninitialized - precontidion -> precondition - regsiters -> registers - marge -> merge - sate -> state - garanteed -> guaranteed - explictly -> explicitly - prefices (nonstandard plural) -> prefixes - bondary -> boundary - formated -> formatted - ithe -> the - arrav -> array - coresponding -> corresponding - owend -> owned - fials -> fails - diasm -> disasm - ture -> true - tpye -> type There's one code change, the name of macro SIG_CODE_BONDARY_FAULT changed to SIG_CODE_BOUNDARY_FAULT. Tested on x86_64-linux.
Diffstat (limited to 'gdb/regcache.c')
-rw-r--r--gdb/regcache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/regcache.c b/gdb/regcache.c
index 56292fb..9b71931 100644
--- a/gdb/regcache.c
+++ b/gdb/regcache.c
@@ -376,7 +376,7 @@ get_thread_arch_aspace_regcache (inferior *inf_for_target_calls,
regcache *new_regcache = new regcache (inf_for_target_calls, arch, aspace);
new_regcache->set_ptid (ptid);
/* Work around a problem with g++ 4.8 (PR96537): Call the regcache_up
- constructor explictly instead of implicitly. */
+ constructor explicitly instead of implicitly. */
ptid_regc_map.insert (std::make_pair (ptid, regcache_up (new_regcache)));
return new_regcache;