public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [committed, PATCH]: Add a testcase for PR tree-optimization/67077
@ 2015-08-03 16:59 H.J. Lu
  0 siblings, 0 replies; only message in thread
From: H.J. Lu @ 2015-08-03 16:59 UTC (permalink / raw)
  To: gcc-patches

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67077

is fixed by

https://gcc.gnu.org/viewcvs/gcc?view=revision&revision=226089

I checked in this patch to add a testcase for PR tree-optimization/67077.

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 226516)
+++ ChangeLog	(working copy)
@@ -1,3 +1,8 @@
+2015-08-03  H.J. Lu  <hongjiu.lu@intel.com>
+
+	PR tree-optimization/67077
+	* gcc.dg/pr67077.c: New test.
+
 2015-08-03  Jeff Law  <law@redhat.com>
 
 	PR middle-end/66314
Index: gcc.dg/pr67077.c
===================================================================
--- gcc.dg/pr67077.c	(revision 0)
+++ gcc.dg/pr67077.c	(working copy)
@@ -0,0 +1,20 @@
+/* { dg-do compile } */
+/* { dg-options "-Wall -O2" } */
+
+unsigned char buffer[8];
+unsigned long
+foo (void)
+{
+  unsigned long i;
+  i = buffer[0];
+  if (i >= 8)
+    return i - 7;
+  i++;
+  while (i > 8)
+    {
+      if (buffer[i-1] != 0)
+        return 0;
+      i--;
+    }
+  return 1;
+}

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2015-08-03 16:59 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-08-03 16:59 [committed, PATCH]: Add a testcase for PR tree-optimization/67077 H.J. Lu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).