longlong.c (alpha_ep_extbl_i_eq_0): Allow for 16-bit 'unsigned int'.

* gcc.c-torture/execute/longlong.c (alpha_ep_extbl_i_eq_0): Allow
	for 16-bit 'unsigned int'.

From-SVN: r45304
This commit is contained in:
Geoffrey Keating 2001-08-31 02:02:42 +00:00 committed by Geoffrey Keating
parent ed09481d0d
commit 2d107c59b4
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2001-08-30 Geoffrey Keating <geoffk@redhat.com>
* gcc.c-torture/execute/longlong.c (alpha_ep_extbl_i_eq_0): Allow
for 16-bit 'unsigned int'.
2001-08-29 Kazu Hirata <kazu@hxi.com>
* gcc.c-torture/compile/981006-1.x: Do not use -fpic on h8300.

View file

@ -10,7 +10,7 @@ void alpha_ep_extbl_i_eq_0()
{
unsigned int rb, ra, rc;
rb = (((unsigned int)(pars) >> 27)) & 0x1fUL;
rb = (((unsigned long)(pars) >> 27)) & 0x1fUL;
ra = (((unsigned int)(pars) >> 5)) & 0x1fUL;
rc = (((unsigned int)(pars) >> 0)) & 0x1fUL;
{