From: Maya Rashish Date: Mon, 14 Oct 2019 21:14:16 +0000 (+0000) Subject: * gcc.c-torture/compile/pr85401: New test. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b08e9f111b80e10b5ae50bcba4e3693475dbf95a;p=gcc.git * gcc.c-torture/compile/pr85401: New test. From-SVN: r276971 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 08d4a79867d..494c67f9b19 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2019-10-14 Maya Rashish + + * gcc.c-torture/compile/pr85401: New test. + 2019-10-14 Mihailo Stojanovic * gcc.target/mips/constant-spill.c: New test. diff --git a/gcc/testsuite/gcc.c-torture/compile/pr85401.c b/gcc/testsuite/gcc.c-torture/compile/pr85401.c new file mode 100644 index 00000000000..fa8fa19be59 --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/compile/pr85401.c @@ -0,0 +1,20 @@ +/* { dg-do compile } */ +/* { dg-options "-O2" } */ + +int h (void); +int i (int); + +struct a b; +struct a +{ + unsigned c:4; +} d () +{ + int e, f = b.c << 2, g = h (); + for (; g;) + ; + if (e == 0) + if (f) + i (f); + return b; +}