diff options
author | Felix Willgerodt <felix.willgerodt@intel.com> | 2022-07-14 16:26:16 +0200 |
---|---|---|
committer | Felix Willgerodt <felix.willgerodt@intel.com> | 2023-01-25 13:40:07 +0100 |
commit | 1b2fb35d5920fc27624823de92c30d346161058e (patch) | |
tree | d64dcb2c8ba2c9761b71c941ab2085d1acd05c3c | |
parent | ebef88edb6474fa9568123645b6762bcd6872702 (diff) | |
download | gdb-1b2fb35d5920fc27624823de92c30d346161058e.zip gdb-1b2fb35d5920fc27624823de92c30d346161058e.tar.gz gdb-1b2fb35d5920fc27624823de92c30d346161058e.tar.bz2 |
gdb, i386: Update stale comment in i386-tdep.h.
The comment seems no longer valid, the functions technically check for
non-pseudo registers, like zmmh. Which is a valid use case.
-rw-r--r-- | gdb/i386-tdep.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/i386-tdep.h b/gdb/i386-tdep.h index 82de5fa..371bce7 100644 --- a/gdb/i386-tdep.h +++ b/gdb/i386-tdep.h @@ -353,7 +353,7 @@ enum record_i386_regnum /* Types for i386-specific registers. */ extern struct type *i387_ext_type (struct gdbarch *gdbarch); -/* Checks of different pseudo-registers. */ +/* Checks of different registers. */ extern int i386_byte_regnum_p (struct gdbarch *gdbarch, int regnum); extern int i386_word_regnum_p (struct gdbarch *gdbarch, int regnum); extern int i386_dword_regnum_p (struct gdbarch *gdbarch, int regnum); |