Testcase for ia64-linux extract_muldiv bug.

* execute/20000503-1.c: New test for extract_muldiv bug.

From-SVN: r33642
This commit is contained in:
Jim Wilson 2000-05-03 20:03:21 +00:00 committed by Jim Wilson
parent a6d7adfd47
commit 8ae7150163
2 changed files with 17 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Wed May 3 13:02:10 2000 Jim Wilson <wilson@cygnus.com>
* execute/20000503-1.c: New test for extract_muldiv bug.
Thu Apr 27 15:58:18 MET DST 2000 Jan Hubicka <jh@suse.cz>
* compile/20000427-1.c: New test for loop hoisting code

View File

@ -0,0 +1,13 @@
unsigned long
sub (int a)
{
return ((0 > a - 2) ? 0 : a - 2) * sizeof (long);
}
main ()
{
if (sub1 (0) != 0)
abort ();
exit (0);
}