PR target/57108
* gcc.target/sh/pr57108.c: Move this test case to ...
* gcc.c-torture/compile/pr57108.c: ... here.
From-SVN: r198803
+2013-05-12 Oleg Endo <olegendo@gcc.gnu.org>
+
+ PR target/57108
+ * gcc.target/sh/pr57108.c: Move this test case to ...
+ * gcc.c-torture/compile/pr57108.c: ... here.
+
2013-05-10 Richard Biener <rguenther@suse.de>
PR tree-optimization/57214
--- /dev/null
+/* PR target/57108 */
+
+void __assert_func (void) __attribute__ ((__noreturn__));
+
+void
+ATATransfer (int num, int buffer)
+{
+ int wordCount;
+
+ while (num > 0)
+ {
+ wordCount = num * 512 / sizeof (int);
+
+ ((0 == (buffer & 63)) ? (void)0 : __assert_func () );
+ ((0 == (wordCount & 31)) ? (void)0 : __assert_func ());
+ }
+}
+++ /dev/null
-/* { dg-do compile { target "sh*-*-*" } } */
-/* { dg-options "-O1" } */
-
-void __assert_func (void) __attribute__ ((__noreturn__)) ;
-
-void ATATransfer (int num, int buffer)
-{
- int wordCount;
-
- while (num > 0)
- {
- wordCount = num * 512 / sizeof (int);
-
- ((0 == (buffer & 63)) ? (void)0 : __assert_func () );
- ((0 == (wordCount & 31)) ? (void)0 : __assert_func ());
- }
-
-
- }