PR middle-end/66726
* g++.dg/tree-ssa/pr66726.c: Renamed to...
* g++.dg/tree-ssa/pr66726.C: ... this.
From-SVN: r231384
+2015-12-07 Jakub Jelinek <jakub@redhat.com>
+
+ PR middle-end/66726
+ * g++.dg/tree-ssa/pr66726.c: Renamed to...
+ * g++.dg/tree-ssa/pr66726.C: ... this.
+
2015-12-07 Steve Ellcey <sellcey@imgtec.com>
* gcc.target/mips/wrap-delay.c: New test.
--- /dev/null
+/* { dg-do run } */
+/* { dg-options "-O2" } */
+
+/* Execution test for converting VIEW_CONVERT_EXPR. */
+
+struct cpp_num {
+ bool f;
+};
+
+extern cpp_num __attribute__((noinline))
+foo (cpp_num lhs,
+ cpp_num rhs)
+{
+ lhs.f = lhs.f || rhs.f;
+ return lhs;
+}
+
+cpp_num lhs, rhs, r;
+
+int main ()
+{
+
+ lhs.f = false;
+ rhs.f = false;
+ r = foo (lhs, rhs);
+ if (r.f)
+ __builtin_abort ();
+
+
+ lhs.f = false;
+ rhs.f = true;
+ r = foo (lhs, rhs);
+ if (!r.f)
+ __builtin_abort ();
+}
+++ /dev/null
-
-/* { dg-do run } */
-/* { dg-options "-O2" } */
-
-/* Execution test for converting VIEW_CONVERT_EXPR. */
-
-struct cpp_num {
- bool f;
-};
-
-extern cpp_num __attribute__((noinline))
-foo (cpp_num lhs,
- cpp_num rhs)
-{
- lhs.f = lhs.f || rhs.f;
- return lhs;
-}
-
-cpp_num lhs, rhs, r;
-
-int main ()
-{
-
- lhs.f = false;
- rhs.f = false;
- r = foo (lhs, rhs);
- if (r.f)
- __builtin_abort ();
-
-
- lhs.f = false;
- rhs.f = true;
- r = foo (lhs, rhs);
- if (!r.f)
- __builtin_abort ();
-}