Fortran: Fix Explicit cobounds of a procedures parameter not respected [PR78466]
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 990617-1.c
blob5931ba06d01d1ac52f06fd0b361310027151affd
1 /* { dg-do assemble } */
2 /* { dg-require-effective-target ptr32plus } */
4 int main()
6 do {
7 long l;
8 long *p = &l;
10 *p = 0x0000000070000000L;
11 p += 2;
13 unsigned int *addr = (unsigned int *)0x70000000;
14 __builtin_printf("%d, %d\n", addr[1], addr[0]);
17 } while (1);