public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] opcodes: i386: fix dw2_regnum data type in reg_entry
@ 2024-01-09  1:12 Indu Bhagat
  2024-01-09  1:12 ` [PATCH] opcodes: gas: i386: use Rex2 as attribute not constraint Indu Bhagat
  2024-01-09  8:24 ` [PATCH] opcodes: i386: fix dw2_regnum data type in reg_entry Jan Beulich
  0 siblings, 2 replies; 12+ messages in thread
From: Indu Bhagat @ 2024-01-09  1:12 UTC (permalink / raw)
  To: binutils; +Cc: Indu Bhagat

The DWARF register numbers for the APX EGRPs start with 130.  The data
type holding the same currently is signed char.

ChangeLog:
	* opcodes/i386-opc.h (reg_entry): Bump to signed short.
---
 opcodes/i386-opc.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/opcodes/i386-opc.h b/opcodes/i386-opc.h
index 61a11214914..38661ffe70c 100644
--- a/opcodes/i386-opc.h
+++ b/opcodes/i386-opc.h
@@ -1047,7 +1047,7 @@ typedef struct
 #define RegIZ	(RegIP - 1)
 /* FLAT is a fake segment register (Intel mode).  */
 #define RegFlat     ((unsigned char) ~0)
-  signed char dw2_regnum[2];
+  signed short dw2_regnum[2];
 #define Dw2Inval (-1)
 }
 reg_entry;
-- 
2.41.0


^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2024-01-22  7:49 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-09  1:12 [PATCH] opcodes: i386: fix dw2_regnum data type in reg_entry Indu Bhagat
2024-01-09  1:12 ` [PATCH] opcodes: gas: i386: use Rex2 as attribute not constraint Indu Bhagat
2024-01-09  8:14   ` Jan Beulich
2024-01-09  8:24 ` [PATCH] opcodes: i386: fix dw2_regnum data type in reg_entry Jan Beulich
2024-01-11  1:35   ` Kong, Lingling
2024-01-11  7:43     ` Jan Beulich
2024-01-11  7:59       ` Kong, Lingling
2024-01-11  8:05         ` Jan Beulich
2024-01-11 13:27           ` H.J. Lu
2024-01-11 14:05             ` Jan Beulich
2024-01-20  0:45               ` Indu Bhagat
2024-01-22  7:49                 ` Jan Beulich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).