]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
pr45472.c: Remove copies.
authorRichard Biener <rguenther@suse.de>
Tue, 2 Apr 2013 12:27:37 +0000 (12:27 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Tue, 2 Apr 2013 12:27:37 +0000 (12:27 +0000)
2013-04-02  Richard Biener  <rguenther@suse.de>

        * gcc.dg/pr45472.c: Remove copies.

From-SVN: r197352

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

index bb5eae306082960ca141a3e6fe5767b98e63165d..152a64c40c5eb10ea6460a5ee3a295e01c2a8602 100644 (file)
@@ -1,3 +1,7 @@
+2013-04-02  Richard Biener  <rguenther@suse.de>
+
+       * gcc.dg/pr45472.c: Remove copies.
+
 2013-04-02  Richard Biener  <rguenther@suse.de>
 
        PR middle-end/56768
index d6cb6bce65aa2f0d22a23edceb67ba8e82f3645c..573e83d700c02ab2a346f88f94beab2b06d14100 100644 (file)
@@ -19,45 +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;
-    }
-}