aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorMaya Rashish <coypu@sdf.org>2019-10-14 21:14:16 +0000
committerJeff Law <law@gcc.gnu.org>2019-10-14 15:14:16 -0600
commitb08e9f111b80e10b5ae50bcba4e3693475dbf95a (patch)
tree9216ae3bc1fb2e74b802c144f17d3b7828b841be /gcc
parent128ec9d5505429297231540d48ea2b2ac2a3f89b (diff)
downloadgcc-b08e9f111b80e10b5ae50bcba4e3693475dbf95a.zip
gcc-b08e9f111b80e10b5ae50bcba4e3693475dbf95a.tar.gz
gcc-b08e9f111b80e10b5ae50bcba4e3693475dbf95a.tar.bz2
* gcc.c-torture/compile/pr85401: New test.
From-SVN: r276971
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/ChangeLog4
-rw-r--r--gcc/testsuite/gcc.c-torture/compile/pr85401.c20
2 files changed, 24 insertions, 0 deletions
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 <coypu@sdf.org>
+
+ * gcc.c-torture/compile/pr85401: New test.
+
2019-10-14 Mihailo Stojanovic <mistojanovic@wavecomp.com>
* 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;
+}