* alpha.c (alpha_Instruction): Use int, not signed.

This commit is contained in:
Ian Lance Taylor 1998-02-06 17:04:19 +00:00
parent ed302e5ddf
commit 5587a091de
2 changed files with 6 additions and 2 deletions

View File

@ -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".

View File

@ -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;