aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTankut Baris Aktemur <tankut.baris.aktemur@intel.com>2024-12-17 08:48:04 +0100
committerTankut Baris Aktemur <tankut.baris.aktemur@intel.com>2024-12-17 08:48:04 +0100
commitac965d0fc5f6fc93fc0595a870a66a330f456bc6 (patch)
tree4931cb8d9b1c4367fb51af294def6fb9b5890462
parentf7f94f99273176f5f6b64f69e01673f935d54cad (diff)
downloadbinutils-ac965d0fc5f6fc93fc0595a870a66a330f456bc6.zip
binutils-ac965d0fc5f6fc93fc0595a870a66a330f456bc6.tar.gz
binutils-ac965d0fc5f6fc93fc0595a870a66a330f456bc6.tar.bz2
gdbsupport: fix a typo in a comment in common-regcache.h
Fix a typo. Approved-By: Simon Marchi <simon.marchi@efficios.com>
-rw-r--r--gdbsupport/common-regcache.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gdbsupport/common-regcache.h b/gdbsupport/common-regcache.h
index ef37d61..87ffc22 100644
--- a/gdbsupport/common-regcache.h
+++ b/gdbsupport/common-regcache.h
@@ -35,10 +35,10 @@ enum register_status : signed char
/* The register value is unavailable. E.g., we're inspecting a
traceframe, and this register wasn't collected. Note that this
- is different a different "unavailable" from saying the register
- does not exist in the target's architecture --- in that case,
- the target should have given us a target description that does
- not include the register in the first place. */
+ "unavailable" is different from saying the register does not
+ exist in the target's architecture --- in that case, the target
+ should have given us a target description that does not include
+ the register in the first place. */
REG_UNAVAILABLE = -1
};