pr66140.c (lpfc_bg_setup_bpl): Use unsigned immediates to avoid shift-overflow warnings.

* gcc.target/alpha/pr66140.c (lpfc_bg_setup_bpl): Use unsigned
	immediates to avoid shift-overflow warnings.

From-SVN: r226233
This commit is contained in:
Uros Bizjak 2015-07-26 11:08:04 +02:00 committed by Uros Bizjak
parent e4e040f1a2
commit 6e07a52e77
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2015-07-26 Uros Bizjak <ubizjak@gmail.com>
* gcc.target/alpha/pr66140.c (lpfc_bg_setup_bpl): Use unsigned
immediates to avoid shift-overflow warnings.
2015-07-25 Patrick Palka <ppalka@gcc.gnu.org>
PR c++/66857

View File

@ -34,7 +34,7 @@ static inline void lpfc_bg_setup_bpl(struct lpfc_hba *phba, struct scsi_cmnd *sc
void *sgde;
int i;
*pde5 = (((0x85 & 0x000000ff) << 24) | (*pde5 & ~(0x000000ff << 24)));
*pde5 = (((0x85 & 0x000000ffu) << 24) | (*pde5 & ~(0x000000ffu << 24)));
for (i = 0, sgde = scsi_sglist(sc); i < 2; i++, sgde = sg_next(sgde))
;
}