* 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

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