re PR target/84528 (gcc.c-torture/execute/960419-2.c -O3 fails with -fno-omit-frame...
authorRichard Sandiford <richard.sandiford@linaro.org>
Thu, 1 Mar 2018 08:30:20 +0000 (08:30 +0000)
committerRichard Sandiford <rsandifo@gcc.gnu.org>
Thu, 1 Mar 2018 08:30:20 +0000 (08:30 +0000)
2018-03-01  Richard Sandiford  <richard.sandiford@linaro.org>

gcc/testsuite/
PR rtl-optimization/84528
* gcc.dg/torture/pr84538.c: Rename to...
* gcc.dg/torture/pr84528.c: ...this.

From-SVN: r258095

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/torture/pr84528.c [new file with mode: 0644]
gcc/testsuite/gcc.dg/torture/pr84538.c [deleted file]

index 6528ac0276d9aa323b9b01620a08750ba7d8b52b..dcf7075bce3a7153dba9cd2f75c0f1c222b031d9 100644 (file)
@@ -1,6 +1,12 @@
 2018-03-01  Richard Sandiford  <richard.sandiford@linaro.org>
 
-       PR rtl-optimization/84538
+       PR rtl-optimization/84528
+       * gcc.dg/torture/pr84538.c: Rename to...
+       * gcc.dg/torture/pr84528.c: ...this.
+
+2018-03-01  Richard Sandiford  <richard.sandiford@linaro.org>
+
+       PR rtl-optimization/84528
        * gcc.dg/torture/pr84538.c: New test.
 
 2018-02-28  Martin Sebor  <msebor@redhat.com>
diff --git a/gcc/testsuite/gcc.dg/torture/pr84528.c b/gcc/testsuite/gcc.dg/torture/pr84528.c
new file mode 100644 (file)
index 0000000..b56a1c4
--- /dev/null
@@ -0,0 +1,16 @@
+/* { dg-do run } */
+/* { dg-additional-options "-fno-omit-frame-pointer -w" } */
+
+#define SIZE 8
+
+main()
+{
+  int a[SIZE] = {1};
+  int i;
+
+  for (i = 1; i < SIZE; i++)
+    if (a[i] != 0)
+      abort();
+
+  exit (0);
+}
diff --git a/gcc/testsuite/gcc.dg/torture/pr84538.c b/gcc/testsuite/gcc.dg/torture/pr84538.c
deleted file mode 100644 (file)
index b56a1c4..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-/* { dg-do run } */
-/* { dg-additional-options "-fno-omit-frame-pointer -w" } */
-
-#define SIZE 8
-
-main()
-{
-  int a[SIZE] = {1};
-  int i;
-
-  for (i = 1; i < SIZE; i++)
-    if (a[i] != 0)
-      abort();
-
-  exit (0);
-}