Commit 6e07a52e by Uros Bizjak Committed by Uros Bizjak

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
parent e4e040f1
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
......
......@@ -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))
;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment