]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* gcc.dg/pr45472.c: Remove copies.
authorJakub Jelinek <jakub@redhat.com>
Wed, 3 Apr 2013 17:44:40 +0000 (19:44 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Wed, 3 Apr 2013 17:44:40 +0000 (19:44 +0200)
From-SVN: r197438

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/pr45472.c

index 5511389c779c44f9985c7570a5269a5a163edd00..f7959c192c69192c71ffbc8f356f80a14a2c623c 100644 (file)
@@ -1,3 +1,7 @@
+2013-04-03  Jakub Jelinek  <jakub@redhat.com>
+
+       * gcc.dg/pr45472.c: Remove copies.
+
 2013-04-01  Andrey Belevantsev  <abel@ispras.ru>
 
        Backport from mainline
index 46a6373e519c95543098a0e330ce25340d5ea966..573e83d700c02ab2a346f88f94beab2b06d14100 100644 (file)
@@ -19,66 +19,3 @@ foo (int j, int c)
       s1 = s2;
     }
 }
-/* { dg-do compile { target powerpc*-*-* ia64-*-* x86_64-*-* } } */
-/* { dg-options "-O -fschedule-insns2 -fselective-scheduling2" } */
-
-struct S
-{
-  volatile long vl;
-  int i;
-};
-struct S s1, s2;
-
-void
-foo (int j, int c)
-{
-  int i;
-  for (i = 0; i <= j; i++)
-    {
-      if (c)
-       s2.vl += s1.vl;
-      s1 = s2;
-    }
-}
-/* { dg-do compile { target powerpc*-*-* ia64-*-* x86_64-*-* } } */
-/* { dg-options "-O -fschedule-insns2 -fselective-scheduling2" } */
-
-struct S
-{
-  volatile long vl;
-  int i;
-};
-struct S s1, s2;
-
-void
-foo (int j, int c)
-{
-  int i;
-  for (i = 0; i <= j; i++)
-    {
-      if (c)
-       s2.vl += s1.vl;
-      s1 = s2;
-    }
-}
-/* { dg-do compile { target powerpc*-*-* ia64-*-* x86_64-*-* } } */
-/* { dg-options "-O -fschedule-insns2 -fselective-scheduling2" } */
-
-struct S
-{
-  volatile long vl;
-  int i;
-};
-struct S s1, s2;
-
-void
-foo (int j, int c)
-{
-  int i;
-  for (i = 0; i <= j; i++)
-    {
-      if (c)
-       s2.vl += s1.vl;
-      s1 = s2;
-    }
-}