New test from PR 17547

From-SVN: r22718
This commit is contained in:
Nick Clifton 1998-10-01 17:18:07 +00:00 committed by Nick Clifton
parent 913f68c116
commit b84bfa3c79
2 changed files with 22 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Thu Oct 1 17:15:26 1998 Nick Clifton <nickc@cygnus.com>
* compile/981001-1.c (main): New test.
Wed Aug 26 16:10:00 1997 J"orn Rennecke <amylaar@cygnus.co.uk>
* execute/loop-4b.c: New test.

View File

@ -0,0 +1,18 @@
unsigned short code = 0x0000;
unsigned short low = 0x4000;
unsigned short high = 0xb000;
int main (void)
{
if (
(high & 0x8000) != (low & 0x8000)
&& ( low & 0x4000) == 0x4000
&& (high & 0x4000) == 0
)
{
code ^= 0x4000;
low |= 0x4000;
}
exit (0);
}