Commit 0c84d521 by Oleg Endo

re PR target/64652 ([SH] ICE when using -mdiv=call-fp)

gcc/testsuite/
	PR target/64652
	* gcc.target/sh/torture/pr64652.c (test): Rename to test_0.
	(test_1): New.

From-SVN: r219870
parent aa0c464a
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> 2015-01-19 Martin Liska <mliska@suse.cz>
* objc/compile/pr64668.m: New test. * objc/compile/pr64668.m: New test.
......
...@@ -4,7 +4,13 @@ ...@@ -4,7 +4,13 @@
/* { dg-skip-if "" { "sh*-*-*" } { "-m5*" } { "" } } */ /* { dg-skip-if "" { "sh*-*-*" } { "-m5*" } { "" } } */
int 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; return (a / b) + c + d;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment