]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.target/i386/mpx/pr79753.c
Daily bump.
[thirdparty/gcc.git] / gcc / testsuite / gcc.target / i386 / mpx / pr79753.c
1 /* { dg-do compile } */
2 /* { dg-options "-fcheck-pointer-bounds -mmpx -O2" } */
3
4 int
5 foo (void)
6 {
7 return 0;
8 }
9
10 void
11 bar (int **p)
12 {
13 *p = (int *) (__UINTPTR_TYPE__) foo ();
14 }