wrap-delay.c: New test.
authorSteve Ellcey <sellcey@imgtec.com>
Mon, 7 Dec 2015 20:39:04 +0000 (20:39 +0000)
committerSteve Ellcey <sje@gcc.gnu.org>
Mon, 7 Dec 2015 20:39:04 +0000 (20:39 +0000)
2015-12-07  Steve Ellcey  <sellcey@imgtec.com>

* gcc.target/mips/wrap-delay.c: New test.

From-SVN: r231383

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/mips/wrap-delay.c [new file with mode: 0644]

index 7088835fe03111d0588fbda2a318a6e0406f8afc..9361cee8a70f7d32b4c64b3a9537d7ad08ded259 100644 (file)
@@ -1,3 +1,7 @@
+2015-12-07  Steve Ellcey  <sellcey@imgtec.com>
+
+       * gcc.target/mips/wrap-delay.c: New test.
+
 2015-12-07  Jason Merrill  <jason@redhat.com>
 
        * lib/g++.exp: Also find -std list in GXX_TESTSUITE_STDS
diff --git a/gcc/testsuite/gcc.target/mips/wrap-delay.c b/gcc/testsuite/gcc.target/mips/wrap-delay.c
new file mode 100644 (file)
index 0000000..1332a68
--- /dev/null
@@ -0,0 +1,42 @@
+/* { dg-do compile } */
+/* { dg-options "-g -mframe-header-opt -mbranch-likely" } */
+
+/* GCC was generating an ICE with the above options and -Os because
+   it was putting the save of $31 in two annulled delay slots but
+   there was only one restore since only one of the two saves could be
+   executed.  This was correct code but it confused dwarf2cfi and
+   caused it to ICE when using the -g option.  */
+
+
+enum demangle_component_type
+{
+       DEMANGLE_COMPONENT_TRINARY_ARG2,
+};
+struct demangle_component
+{
+  enum demangle_component_type type;
+};
+struct d_info
+{
+  int next_comp;
+  int num_comps;
+};
+struct demangle_component * d_make_empty (struct d_info *di)
+{
+  if (di->next_comp >= di->num_comps) return ((void *)0);
+  ++di->next_comp;
+}
+struct demangle_component *d_make_comp (
+       struct d_info *di,
+       enum demangle_component_type type,
+       struct demangle_component *left)
+{
+  struct demangle_component *p;
+  switch (type)
+    {
+    case DEMANGLE_COMPONENT_TRINARY_ARG2:
+      if (left == ((void *)0)) return ((void *)0);
+    }
+  p = d_make_empty (di);
+  p->type = type;
+}