* reg.c (set_oszc): Use unsigned int for the mask.

(set_szc, set_osz, set_sz): Likewise.
This commit is contained in:
Nick Clifton 2010-06-08 09:15:17 +00:00
parent 09266d1a64
commit 32b269aeb2
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2010-06-08 Nick Clifton <nickc@redhat.com>
* reg.c (set_oszc): Use unsigned int for the mask.
(set_szc, set_osz, set_sz): Likewise.
2010-04-26 Mike Frysinger <vapier@gentoo.org>
* configure.ac: Target logic moved out to and included from ...

View File

@ -377,7 +377,7 @@ set_flags (int mask, int newbits)
void
set_oszc (long long value, int b, int c)
{
int mask = b2mask[b];
unsigned int mask = b2mask[b];
int f = 0;
if (c)
@ -394,7 +394,7 @@ set_oszc (long long value, int b, int c)
void
set_szc (long long value, int b, int c)
{
int mask = b2mask[b];
unsigned int mask = b2mask[b];
int f = 0;
if (c)
@ -409,7 +409,7 @@ set_szc (long long value, int b, int c)
void
set_osz (long long value, int b)
{
int mask = b2mask[b];
unsigned int mask = b2mask[b];
int f = 0;
if ((value & mask) == 0)
@ -424,7 +424,7 @@ set_osz (long long value, int b)
void
set_sz (long long value, int b)
{
int mask = b2mask[b];
unsigned int mask = b2mask[b];
int f = 0;
if ((value & mask) == 0)