From: Martin Liska Date: Tue, 20 Mar 2018 14:13:17 +0000 (+0100) Subject: Remove ICEing test-case. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7e86e0a3a1a8f923e2fb7badfe5714bc239710af;p=gcc.git Remove ICEing test-case. 2018-03-20 Martin Liska * gcc.dg/lto/chkp-ctor-merge_0.c: Remove. From-SVN: r258682 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 26b7e58c986..a59f09a2007 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2018-03-20 Martin Liska + + * gcc.dg/lto/chkp-ctor-merge_0.c: Remove. + 2018-03-20 Jakub Jelinek PR target/84845 diff --git a/gcc/testsuite/gcc.dg/lto/chkp-ctor-merge_0.c b/gcc/testsuite/gcc.dg/lto/chkp-ctor-merge_0.c deleted file mode 100644 index ac4095bf012..00000000000 --- a/gcc/testsuite/gcc.dg/lto/chkp-ctor-merge_0.c +++ /dev/null @@ -1,23 +0,0 @@ -/* { 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; -}