mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 12:23:31 +08:00
* alpha.c (alpha_Instruction): Use int, not signed.
This commit is contained in:
@ -1,3 +1,7 @@
|
||||
Fri Feb 6 12:02:28 1998 Ian Lance Taylor <ian@cygnus.com>
|
||||
|
||||
* alpha.c (alpha_Instruction): Use int, not signed.
|
||||
|
||||
Fri Feb 6 02:00:19 1998 Jeffrey A Law (law@cygnus.com)
|
||||
|
||||
* core.c (core_init): Adding missing "break".
|
||||
|
@ -43,14 +43,14 @@ typedef union
|
||||
a; /* any format */
|
||||
struct
|
||||
{
|
||||
signed disp:21;
|
||||
int disp:21;
|
||||
unsigned ra:5;
|
||||
unsigned op_code:6;
|
||||
}
|
||||
b; /* branch format */
|
||||
struct
|
||||
{
|
||||
signed hint:14;
|
||||
int hint:14;
|
||||
unsigned func:2;
|
||||
unsigned rb:5;
|
||||
unsigned ra:5;
|
||||
|
Reference in New Issue
Block a user