gcc/testsuite/
PR target/64652
* gcc.target/sh/torture/pr64652.c (test): Rename to test_0.
(test_1): New.
From-SVN: r219870
+2015-01-19 Oleg Endo <olegendo@gcc.gnu.org>
+
+ PR target/64652
+ * gcc.target/sh/torture/pr64652.c (test): Rename to test_0.
+ (test_1): New.
+
2015-01-19 Martin Liska <mliska@suse.cz>
* objc/compile/pr64668.m: New test.
/* { dg-skip-if "" { "sh*-*-*" } { "-m5*" } { "" } } */
int
-test (int a, int b, int c, int d)
+test_0 (int a, int b, int c, int d)
+{
+ return (a / b) + c + d;
+}
+
+unsigned int
+test_1 (unsigned int a, unsigned int b, unsigned int c, unsigned int d)
{
return (a / b) + c + d;
}