From 5cb0406bb64da200520ab3a9ee8f2a3c58ea6be0 Mon Sep 17 00:00:00 2001 From: Tom de Vries Date: Wed, 13 Nov 2024 22:38:19 +0100 Subject: [gdb/contrib] Handle capitalized words in spellcheck.sh The dictionary contains a few entries with capital letters: ... $ grep -E '[A-Z]' .git/wikipedia-common-misspellings.txt | wc -l 143 ... but they don't look too interesting in the gdb context (for instance, Habsbourg->Habsburg), so filter them out. That leaves us with entries looking only like "foobat->foobar", so add handling of capitalized words, such that we also rewrite "Foobat" to "Foobar". Tested on aarch64-linux. Verified with shellcheck. Approved-by: Kevin Buettner --- gdb/amd64-tdep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/amd64-tdep.c') diff --git a/gdb/amd64-tdep.c b/gdb/amd64-tdep.c index c17b5f7..ba6532f 100644 --- a/gdb/amd64-tdep.c +++ b/gdb/amd64-tdep.c @@ -1227,7 +1227,7 @@ amd64_get_unused_input_int_reg (const struct amd64_insn *details) /* Avoid RAX. */ used_regs_mask |= 1 << EAX_REG_NUM; - /* Similarily avoid RDX, implicit operand in divides. */ + /* Similarly avoid RDX, implicit operand in divides. */ used_regs_mask |= 1 << EDX_REG_NUM; /* Avoid RSP. */ used_regs_mask |= 1 << ESP_REG_NUM; -- cgit v1.1