20040409-2.c: Fix constants used on 16-bit targets.

* gcc.c-torture/execute/20040409-2.c: Fix constants used on
	16-bit targets.

From-SVN: r81342
This commit is contained in:
Kazu Hirata 2004-04-30 14:19:05 +00:00
parent 2d99c042fc
commit 99c4eea1c4
2 changed files with 13 additions and 8 deletions

View File

@ -1,7 +1,12 @@
2004-04-30 Kazu Hirata <kazu@cs.umass.edu>
* gcc.c-torture/execute/20040409-2.c: Fix constants used on
16-bit targets.
2004-04-30 Andrew Pinski <pinskia@physics.uc.edu>
* rs6000-power2-1.c: Change to compile only.
* rs6000-power2-2.c: Likewise.
* gcc.dg/rs6000-power2-1.c: Change to compile only.
* gcc.dg/rs6000-power2-2.c: Likewise.
2004-04-29 Andrew Pinski <pinskia@physics.uc.edu>

View File

@ -227,13 +227,13 @@ int main()
test(0x1234,0x8000);
test(0x8000,0x1234);
test(0x9234,0x0000);
test(0x7fff,0xffff);
test(0xffff,0x7fff);
test(0x7fff,0xedcb);
test(0xffff,0x6dcb);
testu(0x0000,0x8000);
testu(0x8000,0x0000);
testu(0x1234,0x9234);
testu(0x9234,0x1234);
testu(0x0000,0x9234);
testu(0x8000,0x1234);
testu(0x1234,0x8000);
testu(0x9234,0x0000);
testu(0x7fff,0xedcb);
testu(0xffff,0x6dcb);
#endif