Commit 7e86e0a3 by Martin Liska Committed by Martin Liska

Remove ICEing test-case.

2018-03-20  Martin Liska  <mliska@suse.cz>

	* gcc.dg/lto/chkp-ctor-merge_0.c: Remove.

From-SVN: r258682
parent d64257a4
2018-03-20 Martin Liska <mliska@suse.cz>
* gcc.dg/lto/chkp-ctor-merge_0.c: Remove.
2018-03-20 Jakub Jelinek <jakub@redhat.com> 2018-03-20 Jakub Jelinek <jakub@redhat.com>
PR target/84845 PR target/84845
......
/* { dg-lto-do run } */
/* { dg-require-effective-target mpx } */
/* { dg-lto-options { { -O2 -flto -fcheck-pointer-bounds -mmpx -nodefaultlibs -lc } } } */
int glob = 1;
void __attribute__((constructor))
ctor1 ()
{
glob += 1;
}
void __attribute__((constructor))
ctor2 ()
{
glob -= 2;
}
int main (int argc, const char **argv)
{
return glob;
}
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