From: Richard Sandiford Date: Thu, 1 Mar 2018 08:30:20 +0000 (+0000) Subject: re PR target/84528 (gcc.c-torture/execute/960419-2.c -O3 fails with -fno-omit-frame... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6ecdd2b4c5e68244d0b3ace2102fcda5b9d7aabb;p=gcc.git re PR target/84528 (gcc.c-torture/execute/960419-2.c -O3 fails with -fno-omit-frame-pointer) 2018-03-01 Richard Sandiford gcc/testsuite/ PR rtl-optimization/84528 * gcc.dg/torture/pr84538.c: Rename to... * gcc.dg/torture/pr84528.c: ...this. From-SVN: r258095 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 6528ac0276d..dcf7075bce3 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,6 +1,12 @@ 2018-03-01 Richard Sandiford - 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 + + PR rtl-optimization/84528 * gcc.dg/torture/pr84538.c: New test. 2018-02-28 Martin Sebor diff --git a/gcc/testsuite/gcc.dg/torture/pr84528.c b/gcc/testsuite/gcc.dg/torture/pr84528.c new file mode 100644 index 00000000000..b56a1c47176 --- /dev/null +++ b/gcc/testsuite/gcc.dg/torture/pr84528.c @@ -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 index b56a1c47176..00000000000 --- a/gcc/testsuite/gcc.dg/torture/pr84538.c +++ /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); -}