public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [committed] Add testcase for already fixed PR (PR tree-optimization/83283)
@ 2017-12-05 13:36 Jakub Jelinek
  0 siblings, 0 replies; only message in thread
From: Jakub Jelinek @ 2017-12-05 13:36 UTC (permalink / raw)
  To: gcc-patches

Hi!

This testcase has been fixed by r253146 but that testcase is quite different
from this one, so I've committed this to trunk as obvious.

2017-12-05  Jakub Jelinek  <jakub@redhat.com>

	PR tree-optimization/83283
	* g++.dg/torture/pr83283.C: New test.

--- gcc/testsuite/g++.dg/torture/pr83283.C.jj	2017-12-05 13:01:03.432144366 +0100
+++ gcc/testsuite/g++.dg/torture/pr83283.C	2017-12-05 13:00:55.926238921 +0100
@@ -0,0 +1,26 @@
+// PR tree-optimization/83283
+// { dg-do run }
+// { dg-additional-options "-std=c++11" }
+
+enum E : unsigned char { X = 0, Y = 1 };
+
+void __attribute__((noinline))
+foo (E *v, int size)
+{
+  for (int i = 0; i < size; ++i)
+    {
+      const bool b = (v[i] == E::Y);
+      v[i] = static_cast<E>(static_cast<unsigned char>(b));
+    }
+}
+
+int
+main ()
+{
+  constexpr int items = 32;
+  E vals[items] = {X};
+  vals[3] = Y;
+  foo (vals, items);
+  if (vals[3] != 1)
+    __builtin_abort ();
+}

	Jakub

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

only message in thread, other threads:[~2017-12-05 13:36 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-05 13:36 [committed] Add testcase for already fixed PR (PR tree-optimization/83283) Jakub Jelinek

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).