* gcc.dg/vect/vect-pr61917.c: Rename to ...
* gcc.dg/vect/O3-vect-pr61917.c: ... this.
(dg-additional-options): Remove dg directive.
(dg-final): Add dg directive.
From-SVN: r221027
+2015-02-26 Uros Bizjak <ubizjak@gmail.com>
+
+ * gcc.dg/vect/vect-pr61917.c: Rename to ...
+ * gcc.dg/vect/O3-vect-pr61917.c: ... this.
+ (dg-additional-options): Remove dg directive.
+ (dg-final): Add dg directive.
+
2015-02-26 Marek Polacek <polacek@redhat.com>
PR ipa/65008
--- /dev/null
+/* { dg-do compile } */
+
+int a, b, c, d;
+
+int
+fn1 ()
+{
+ for (; c; c++)
+ for (b = 0; b < 2; b++)
+ d = a - d;
+ return d;
+}
+
+/* { dg-final { cleanup-tree-dump "vect" } } */
+++ /dev/null
-/* { dg-do compile } */
-/* { dg-additional-options "-O3" } */
-
-int a, b, c, d;
-
-int
-fn1 ()
-{
- for (; c; c++)
- for (b = 0; b < 2; b++)
- d = a - d;
- return d;
-}