Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 990617-1.c
blobe9d3cf336fcf97fd55aabb610e1877db1dda6411
1 /* 0x70000000 is too large a constant to become a pointer on
2 xstormy16. */
3 /* { dg-do assemble } */
4 /* { dg-xfail-if "" { xstormy16-*-* } { "*" } { "" } } */
6 int main()
8 do {
9 long l;
10 long *p = &l;
12 *p = 0x0000000070000000L;
13 p += 2;
15 unsigned int *addr = (unsigned int *)0x70000000;
16 printf("%d, %d\n", addr[1], addr[0]);
19 } while (1);