* gcc.dg/lto/chkp-privatize_0.c: Remove unneeded selector from target check. From-SVN: r218601
19 lines
341 B
C
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;
|
|
}
|