Unsigned constants for ISO_FORTRAN_ENV and ISO_C_BINDING.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20021010-2.c
blob33468ecfb5ca620c2851b22901b5c3a2419236a5
1 /* cse.c failure on x86 target.
2 Contributed by Stuart Hastings 10 Oct 2002 <stuart@apple.com> */
3 #include <stdlib.h>
5 typedef signed short SInt16;
7 typedef struct {
8 SInt16 minx;
9 SInt16 maxx;
10 SInt16 miny;
11 SInt16 maxy;
12 } IOGBounds;
14 int expectedwidth = 50;
16 unsigned int *global_vramPtr = (unsigned int *)0xa000;
18 IOGBounds global_bounds = { 100, 150, 100, 150 };
19 IOGBounds global_saveRect = { 75, 175, 75, 175 };
21 int
22 main(void)
24 unsigned int *vramPtr;
25 int width;
26 IOGBounds saveRect = global_saveRect;
27 IOGBounds bounds = global_bounds;
29 if (saveRect.minx < bounds.minx) saveRect.minx = bounds.minx;
30 if (saveRect.maxx > bounds.maxx) saveRect.maxx = bounds.maxx;
32 vramPtr = global_vramPtr + (saveRect.miny - bounds.miny) ;
33 width = saveRect.maxx - saveRect.minx;
35 if (width != expectedwidth)
36 abort ();
37 exit (0);