8sa1-gcc/gcc/testsuite/gcc.dg/lto/chkp-privatize_0.c
Ilya Enkovich e90f3d6cfc chkp-privatize_0.c: Remove unneeded selector from target check.
* gcc.dg/lto/chkp-privatize_0.c: Remove unneeded selector
	from target check.

From-SVN: r218601
2014-12-10 19:08:57 +00:00

19 lines
341 B
C

/* { dg-lto-do link } */
/* { dg-require-effective-target mpx } */
/* { dg-lto-options { { -fPIC -flto -flto-partition=max -fcheck-pointer-bounds -mmpx } } } */
static int
__attribute__ ((noinline))
func1 (int i)
{
return i + 2;
}
extern int func2 (int i);
int
main (int argc, char **argv)
{
return func1 (argc) + func2 (argc) + 1;
}