Commit 77942fbd by Ilya Enkovich

Add missed testcase for 223215.

From-SVN: r223217
parent 26625161
/* { dg-do compile } */
/* { dg-options "-O2 -fcheck-pointer-bounds -mmpx -fno-tree-ccp" } */
extern int vfork (void) __attribute__ ((__nothrow__ , __leaf__));
void test1 (void);
void test2 (void);
void test3 (int *);
void test (int *p)
{
test1 ();
p++;
test2 ();
p++;
vfork ();
test3 (p);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment