From: Maya Rashish Date: Mon, 14 Oct 2019 21:14:16 +0000 (+0000) Subject: * gcc.c-torture/compile/pr85401: New test. X-Git-Tag: upstream/12.2.0~21160 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b08e9f111b80e10b5ae50bcba4e3693475dbf95a;p=platform%2Fupstream%2Fgcc.git * gcc.c-torture/compile/pr85401: New test. From-SVN: r276971 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 08d4a79..494c67f 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 0000000..fa8fa19 --- /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; +}